Installing lxml OSX Mavericks 10.9.2



我试图在10.9.2 Mavericks上安装lxml,我使用了之前提到的所有解决方案,但我似乎得到了一个不同的错误,参数'-mno-fuse -madd'是未知的,我相信它只是触发了一个警告,但现在它抛出了一个错误,这里是日志

cc -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -I/usr/include/libxml2 -I/Users/workspace/mybooktype/build/lxml/src/lxml/includes -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/lxml/lxml.etree.c -o build/temp.macosx-10.9-intel-2.7/src/lxml/lxml.etree.o -w -flat_namespace
clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
error: command 'cc' failed with exit status 1

更新1 我最初试图安装django应用程序的booktype,所以按照说明我首先尝试

pip install lxml --install-option="--with-xml2-config=/usr/local/Cellar/libxml2/2.8.0/bin/xml2-config"

你应该安装或升级xcode的命令行工具。请在终端中尝试command:

xcode-select --install

所以这个问题与C编译器无关,它是在机器上使用的python版本中,显然python版本之间存在冲突,一个新的干净的python安装解决了这个问题,并且.bash_profile。然后我们使用原来的命令

pip install lxml

并且已成功安装

相关内容

  • 没有找到相关文章

最新更新