read - python etree lxml
Setup.py: instala lxml con Python2.6 en CentOS (4)
He instalado Python 2.6.6 en 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.
>>>
Quiero usar el módulo lxml, pero la compilación a partir de las fuentes falló:
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
Resolvió mi problema para nokogiri en Centos
sudo yum install -y gcc ruby-devel libxml2 libxml2-devel libxslt libxslt-devel
Si el siguiente no funciona
sudo yum install libxslt-devel python-devel
prueba esto
pip install -U pip setuptools
y luego instalar por
pip install lxml
Tuve el mismo problema, logré instalarlo después de instalar el paquete libxslt-devel
y python-devel
que parece ser su problema:
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
Sin embargo, como también instalé otros paquetes en el proceso, es posible que desee verificar dos libxml2
, libxml2-devel
y libxslt
mientras lo hace.
Aquí hay información sobre cómo construir lxml: http://lxml.de/build.html
estas obras para mi
yum -y install python-devel gcc libxml2 libxml2-devel libxslt libxslt-devel
especialmente el python-devel