pip install lxml
And this error. ..
error: libxml/xmlversion.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
It seems that there is no gcc-like one, so execute the ↓ -like command.
$ sudo apt-get install -y libxml2-dev libxslt1-dev
after this
pip install lxml
The package is safely installed.
Recommended Posts