3

我正在尝试在虚拟机上的 Ubuntu 上安装 libxml2-2.9.1。我按照下面给出的两个链接中的步骤操作: http ://www.linuxfromscratch.org/blfs/view/svn/general/libxml2.html http://www.geeksww.com/tutorials/libraries/libxml/installation/安装_libxml_on_ubuntu_linux.php#comment

我在编译步骤后卡住了。当我点击任何一个链接时,我都会遇到同样的错误。错误是

make[3]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/doc/examples'
make[2]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/doc'
Making all in example
make[2]: Entering directory `/home/abhijit/Documents/libxml2-2.9.1/example'
  CC     gjobread.o
  CCLD   gjobread
make[2]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/example'
Making all in xstc
make[2]: Entering directory `/home/abhijit/Documents/libxml2-2.9.1/xstc'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/xstc'
Making all in python
make[2]: Entering directory `/home/abhijit/Documents/libxml2-2.9.1/python'
make  all-recursive
make[3]: Entering directory `/home/abhijit/Documents/libxml2-2.9.1/python'
Making all in .
make[4]: Entering directory `/home/abhijit/Documents/libxml2-2.9.1/python'
  CC     libxml.lo
libxml.c:14: fatal error: Python.h: No such file or directory
compilation terminated.
make[4]: *** [libxml.lo] Error 1
make[4]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/python'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/python'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1/python'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/abhijit/Documents/libxml2-2.9.1'
make: *** [all] Error 2

请帮忙。

4

3 回答 3

7

你需要 python 头文件。由于您使用的是 Ubuntu,因此您可能可以避免编译 python。尝试

$ sudo apt-get install python-dev

然后编译libxml2。

或者,您发布的 LFS 链接指向编译 python 的说明。

于 2013-06-27T16:31:00.043 回答
5

如果您不需要 Python 绑定,请将 libxml2 配置为

./configure --without-python

而且您不必安装 Python 开发包。

于 2017-03-02T20:56:50.570 回答
2

嗨,我也遇到了这个问题。即使安装了 python-dev 包,所以我将所有头文件复制到 libxml2 库中的 python 文件夹。

cp /usr/include/python2.7/*.h ..../libxml2-2.9.1/python/

这解决了我的问题。

于 2015-06-16T09:24:10.730 回答