lors de l'exécution d'un script python, j'ai eu cette erreur
from lxml import etree
ImportError: No module named lxml
maintenant j'ai essayé d'installer lxml
sudo easy_install lmxl
mais cela me donne l'erreur suivante
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 **
Utilisation de la configuration de construction 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
user563101
la source
la source
Je l'ai résolu en mettant à jour la version lxml avec:
la source
Vous devez installer les fichiers d'en-tête de Python (package python-dev dans debian / ubuntu) pour compiler lxml. Ainsi que libxml2, libxslt, libxml2-dev et libxslt-dev:
la source
apt-get install python-dev libxml2 libxml2-dev libxslt-dev
devrait suffireapt-get
instructions pour Debian 7 seules ne fonctionnaient pas.Si vous exécutez python3, vous devrez faire:
pip3 install lxml
la source
pip
. Carpython3
, nous devrions utiliserpip3
.Pour RHEL / CentOS, exécutez la commande "python --version" pour connaître la version de Python. Par exemple ci-dessous:
$ python --version Python 2.7.12
Maintenant, lancez "sudo yum search lxml" pour découvrir le paquet 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
Maintenant, vous pouvez choisir le package selon votre version Python et exécuter la commande comme ci-dessous:
la source
Pour python 3, cela a fonctionné pour moi
la source
Si vous rencontrez ce problème sur une image basée sur Alpine, essayez ceci:
// pip install -r requirements.txt
la source