在Mac OS x Maverick上的virtualenv上安装Fabric

时间:2014-03-14 11:15:32

标签: python xcode macos

我尝试使用命令pip install fabric

在Mac OS x Maverick上的virtualenv上安装Fabric

当我的mac构建pycrypto时出错:

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 5.1(5B130a)
  • 命令行工具:Xcode 5.1(commandline_tools_os_x_mavericks_for_xcode__march_2014.dmg)
  • python 2.7.6
  • pip 1.5.4

完整日志:http://pastebin.com/raw.php?i=NvzGcN0a

pip install fabric在我的系统上有效,但是当我激活我的virtualenv并尝试在其上安装Fabric时,它不会。

知道我的问题在哪里吗?

1 个答案:

答案 0 :(得分:3)

来自mysql-python on mac os 10.9.1

通过运行修复它:

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

在'pip install ...```

之前

向Romeo Mihalcea道德回答他自己的问题。