read - Instalando el módulo lxml en python
python etree lxml (5)
mientras ejecutaba un script de python, recibí este error
from lxml import etree
ImportError: No module named lxml
ahora traté de instalar lxml
sudo easy_install lmxl
pero me da el siguiente error
Building lxml version 2.3.beta1.
NOTE: Trying to build without Cython, pre-generated ''src/lxml/lxml.etree.c'' needs to be available.
ERROR: /bin/sh: xslt-config: not found
** make sure the development packages of libxml2 and libxslt are installed **
Usando la configuración de compilación de libxslt
src/lxml/lxml.etree.c:4: fatal error: Python.h: No such file or directory
compilation terminated.
error: Setup script exited with error: command ''gcc'' failed with exit status 1
Lo solucioné actualizando la versión lxml con:
pip install --upgrade lxml
Necesita instalar los archivos de encabezado de Python (paquete python-dev en debian / ubuntu) para compilar lxml. Además de libxml2, libxslt, libxml2-dev y libxslt-dev:
apt-get install python-dev libxml2 libxml2-dev libxslt-dev
Para RHEL / CentOS, ejecute el comando "python --version" para averiguar la versión de Python. Ejemplo a continuación:
$ python --version
Python 2.7.12
Ahora ejecute "sudo yum search lxml" para descubrir el paquete python * -lxml.
$ sudo yum search lxml
Failed to set locale, defaulting to C
Loaded plugins: priorities, update-motd, upgrade-helper
1014 packages excluded due to repository priority protections
============================================================================================================= N/S matched: lxml =============================================================================================================
python26-lxml-docs.noarch : Documentation for python-lxml
python27-lxml-docs.noarch : Documentation for python-lxml
python26-lxml.x86_64 : ElementTree-like Python bindings for libxml2 and libxslt
python27-lxml.x86_64 : ElementTree-like Python bindings for libxml2 and libxslt
Ahora puede elegir el paquete según su versión de Python y ejecutar el siguiente comando:
$ sudo yum install python27-lxml.x86_64
Si está ejecutando python3, tendrá que hacer:
pip3 install lxml
Solo haz:
sudo apt-get install python-lxml
Si planea instalar desde la fuente, la respuesta de albertov lo ayudará. Pero a menos que haya una razón, no lo haga, simplemente instálelo desde el repositorio.