繁体   English   中英

PyXML Ubuntu 13.1,错误:安装脚本退出,错误:命令“ x86_64-linux-gnu-gcc”失败,退出状态为1

[英]PyXML Ubuntu 13.1, error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

努力在UBuntu 13.1.0上安装PyXML时,由于抛出错误:错误:安装脚本退出,并显示错误:命令'x86_64-linux-gnu-gcc'失败,退出状态为1

我在谷歌上搜索了一下,但是只能找到安装python-dev的说明,但是我已经做到了(如下面的代码所示)。 我也将HAVE_MEMMOVE 1添加到pyconfig.h

有任何想法吗?

谢谢,

 ravin@Eowyn:~$ sudo easy_install PyXML
Searching for PyXML
Reading http://pypi.python.org/simple/PyXML/
Best match: PyXML 0.8.4
Downloading http://downloads.sourceforge.net/pyxml/PyXML-0.8.4.tar.gz?modtime=1101741917&big_mirror=0
Processing PyXML-0.8.4.tar.gz
Writing /tmp/easy_install-DrBxsQ/PyXML-0.8.4/setup.cfg
Running PyXML-0.8.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-DrBxsQ/PyXML-0.8.4/egg-dist-tmp-ae0fv1
warning: no files found matching '*.html' under directory 'extensions/expat'
warning: no files found matching '*Makefile' under directory 'extensions/expat'
warning: no files found matching '*.dsp' under directory 'extensions/expat'
warning: no previously-included files matching '*/CVS/*' found anywhere in distribution
extensions/expat/lib/xmlparse.c:75:2: error: #error memmove does not exist on this platform, nor is a substitute available
 #error memmove does not exist on this platform, nor is a substitute available
  ^
error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
ravin@Eowyn:~$ sudo apt-get install python-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

在此处输入图片说明

为什么要尝试安装PyXML? 它是为python的旧版本编写的。 尝试使用ElementTree,它简单易用,甚至支持XPath

您可以从开始

from xml.etree.ElementTree import ElementTree

然后继续解析操作

编辑:

此处的已知问题

在Ubuntu 13.04上PyXML和cElementTree的安装将失败,这就是为什么现在这些都是可选的。 如果您尝试在Ubuntu 13.04上安装adspygoogle,则应避免安装这些依赖项。 如果您需要使用这些依赖关系中的任何一个,当前可以在此Bug中找到解决方法。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM