チラシの裏

libxml2-pythonをインストール

2012.03.09

CentoOS上のPython2.7(pythonbrewで入れた)でlibxml2を使うためにインストールしました。

$ sudo yum install libxml2-python

しかし、yumで入れると初期でインストールしてあるPython2.4の方にインストールされる。pipで入れようととしたらパッケージがないといわれエラーになった。

$ pip install libxml2-python
Downloading/unpacking libxml2-python
  Could not find any downloads that satisfy the requirement libxml2-python
No distributions at all found for libxml2-python
Storing complete log in /home/xxxxx/.pip/pip.log

困ったときのstackoverflow

最終的に

pip install http://xmlsoft.org/sources/python/libxml2-python-2.6.21.tar.gz

でインストールできました。

comments powered by Disqus