web-dev-qa-db-ja.com

Setup.py:Python2.6を使用してCentOSにlxmlをインストールする

CentOS 5.4にPython 2.6.6をインストールしました。

[@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.
>>> 

Lxmlモジュールを使用したいのですが、ソースからのビルドが失敗しました:

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
k99

同じ問題が発生しました。パッケージlibxslt-develpython-develをインストールした後、なんとかインストールできました。

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

ただし、その過程で他のパッケージもインストールしたので、その間にlibxml2libxml2-devellibxsltを再確認することをお勧めします。

Lxmlのビルド方法に関する情報を以下に示します。 http://lxml.de/build.html

53
bakkal

Centosのnokogiriの問題を解決しました

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

これらは私のために働く

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

特にpython-devel

0
user2754799

以下が機能しない場合

Sudo yum install libxslt-devel python-devel

これを試して

pip install -U pip setuptools

次にインストールする

pip install lxml
0
Sandeep G