Ubuntu 11에서 easy_install을 사용하여 lxml을 설치하는 데 어려움이 있습니다.
입력 $ easy_install lxml
하면 다음과 같은 결과가 나타납니다.
Searching for lxml
Reading http://pypi.python.org/simple/lxml/
Reading http://codespeak.net/lxml
Best match: lxml 2.3
Downloading http://lxml.de/files/lxml-2.3.tgz
Processing lxml-2.3.tgz
Running lxml-2.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-7UdQOZ/lxml-2.3/egg-dist-tmp-GacQGy
Building lxml version 2.3.
Building without Cython.
ERROR: /bin/sh: xslt-config: not found
** make sure the development packages of libxml2 and libxslt are installed **
Using build configuration of libxslt
In file included from src/lxml/lxml.etree.c:227:0:
src/lxml/etree_defs.h:9:31: fatal error: libxml/xmlversion.h: No such file or directory
compilation terminated.
설치 libxslt
되었거나 libxml2
설치되지 않은 것 같습니다 . http://www.techsww.com/tutorials/libraries/libxslt/installation/installing_libxslt_on_ubuntu_linux.php 및 http://www.techsww.com/tutorials/libraries/libxml/installation/installing_libxml_on_ubuntu_linux 의 지침을 따르려고했습니다 . 성공하지 못한 PHP .
내가 시도 wget ftp://xmlsoft.org/libxml2/libxml2-sources-2.6.27.tar.gz
하면
<successful connection info>
==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD (1) /libxml2 ... done.
==> SIZE libxml2-sources-2.6.27.tar.gz ... done.
==> PASV ... done. ==> RETR libxml2-sources-2.6.27.tar.gz ...
No such file `libxml2-sources-2.6.27.tar.gz'.
다른 쪽을 먼저 시도하면 ./configure --prefix=/usr/local/libxslt --with-libxml-prefix=/usr/local/libxml2
다음과 같이 실패합니다.
checking for libxml libraries >= 2.6.27... configure: error: Could not find libxml2 anywhere, check ftp://xmlsoft.org/.
나는 두 버전을 시도했습니다 2.6.27
과 2.6.29
의 libxml2
차이는 없었다.
돌을 돌려 sudo apt-get install libxml2-dev
놓지 않고 나는 성공적으로 해냈 지만 이것은 아무것도 변하지 않습니다.