2

当我执行

sudo pip install pandas

我得到错误:

creating build/temp.macosx-10.9-intel-2.7/pandas/src/datetime

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 -Ipandas/src/klib -Ipandas/src -I/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c pandas/index.c -o build/temp.macosx-10.9-intel-2.7/pandas/index.o

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

我已经安装了 xcode 和 xcode 命令行工具。

事实上,我可以通过执行以下命令来确认 cc 是否已安装:

cc -v

返回:

Apple LLVM version 5.1 (clang-503.0.38) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.1.0
Thread model: posix
4

2 回答 2

3

这些标志最终让我安装它:

export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments

然后(当然):

sudo -E pip install pandas

感谢@user3378649 的标志建议 - 这让我沿着正确的轨道思考!

于 2014-04-14T20:49:32.893 回答
0

您能否请这些命令以获取更多信息。

只要你没有提到你用来克服这个问题的方法,我会建议不同的方法来帮助缩小范围以找到问题:

第一个解决方案: 运行这些标志:

出口 ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future"

如果它不起作用运行这些标志:

导出 CFLAGS=-Qunused-arguments 导出 CPPFLAGS=-Qunused-arguments

第二种解决方案:

  • 获取 Homebrew - 这是一个要安装的单行 shell 脚本!
  • 编辑您的 .profile 或任何适当的文件,并将 /usr/local/bin 放在 -your PATH 的开头,以便在系统二进制文件之前找到 Homebrew 二进制文件
  • brew install python - 这会在 /usr/local 中安装更新版本的 python
  • 运行“点安装熊猫”

第三个解决方案:

使用easy_install。

在终端中执行以下命令

PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:$(PATH)}"
export PATH

然后: $ sudo easy_install pandas

于 2014-04-06T18:47:58.240 回答