mientras ejecutaba un script de Python, recibí este error
from lxml import etree
ImportError: No module named lxml
ahora intenté 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
python
lxml
python-import
usuario563101
fuente
fuente
Lo resolví actualizando la versión lxml con:
fuente
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:
fuente
apt-get install python-dev libxml2 libxml2-dev libxslt-dev
debería ser suficienteapt-get
instrucciones solo para Debian 7 no funcionaron.Si está ejecutando python3, tendrá que hacer:
pip3 install lxml
fuente
pip
. Porquepython3
deberíamos usarpip3
.Para RHEL / CentOS, ejecute el comando "python --version" para averiguar la versión de Python. Por ejemplo, a continuación:
$ python --version Python 2.7.12
Ahora ejecute "sudo yum search lxml" para averiguar 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 comando como se muestra a continuación:
fuente
Para Python 3 esto funcionó para mí
fuente
Si encuentra este problema en una imagen basada en Alpine, intente esto:
// pip install -r requirements.txt
fuente