durante a execução de um script python, recebi este erro
from lxml import etree
ImportError: No module named lxml
agora tentei instalar lxml
sudo easy_install lmxl
mas me dá o seguinte erro
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 a configuração de compilação do 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
usuário563101
fonte
fonte
Resolvi atualizando a versão lxml com:
fonte
Você precisa instalar os arquivos de cabeçalho do Python (pacote python-dev no debian / ubuntu) para compilar o lxml. Bem como libxml2, libxslt, libxml2-dev e libxslt-dev:
fonte
apt-get install python-dev libxml2 libxml2-dev libxslt-dev
deve ser suficienteapt-get
instruções para o Debian 7 sozinho não funcionaram.Se você estiver executando o python3, terá que fazer:
pip3 install lxml
fonte
pip
. Parapython3
, devemos usarpip3
.Para RHEL / CentOS, execute o comando "python --version" para descobrir a versão do Python. Por exemplo, abaixo:
$ python --version Python 2.7.12
Agora execute "sudo yum search lxml" para descobrir o pacote 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
Agora você pode escolher o pacote de acordo com a sua versão do Python e executar o comando como abaixo:
fonte
Para python 3, isso funcionou para mim
fonte
Se você está encontrando esse problema em uma imagem baseada em Alpine, tente o seguinte:
// pip install -r requisitos.txt
fonte