web-dev-qa-db-fra.com

Setup.py: installez lxml avec Python2.6 sur CentOS

J'ai installé Python 2.6.6 sur CentOS 5.4,

[siyuan.tong@SC-055 lxml-2.3beta1]$ python
Python 2.6.6 (r266:84292, Jan  4 2011, 09:49:55) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

Je veux utiliser le module lxml, mais la compilation à partir des sources a échoué:

src/lxml/lxml.etree.c:157929: error: ‘xsltLibxsltVersion’ undeclared (first use in this function)
src/lxml/lxml.etree.c:157941: error: ‘__pyx_v_4lxml_5etree_XSLT_DOC_DEFAULT_LOADER’ undeclared (first use in this function)
src/lxml/lxml.etree.c:157941: error: ‘xsltDocDefaultLoader’ undeclared (first use in this function)
src/lxml/lxml.etree.c:157950: error: ‘__pyx_f_4lxml_5etree__xslt_doc_loader’ undeclared (first use in this function)
error: command 'gcc' failed with exit status 1
32
znetor

J'ai eu le même problème, j'ai réussi à l'installer après avoir installé les paquetages libxslt-devel et python-devel qui semble être votre problème:

yum install libxslt-devel python-devel

python setup.py install

Installed /usr/lib/python2.6/site-packages/lxml-2.2.8-py2.6-linux-i686.Egg
Processing dependencies for lxml==2.2.8
Finished processing dependencies for lxml==2.2.8

Cependant, étant donné que j'ai également installé d'autres packages au cours du processus, vous voudrez peut-être revérifier libxml2, libxml2-devel et libxslt pendant que vous y êtes.

Voici quelques informations sur la construction de lxml: http://lxml.de/build.html

53
bakkal

Cela a résolu mon problème de nokogiri à Centos

Sudo yum install -y gcc Ruby-devel libxml2 libxml2-devel libxslt libxslt-devel
3
user944293

ces travaux pour moi

yum -y install python-devel gcc libxml2 libxml2-devel libxslt libxslt-devel

surtout le python-devel

0
user2754799

Si le ci-dessous ne fonctionne pas 

Sudo yum install libxslt-devel python-devel

essaye ça 

pip install -U pip setuptools

puis installer par

pip install lxml
0
Sandeep G