我尝试使用命令pip install 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
完整日志:http://pastebin.com/raw.php?i=NvzGcN0a
pip install fabric
在我的系统上有效,但是当我激活我的virtualenv并尝试在其上安装Fabric时,它不会。
知道我的问题在哪里吗?
答案 0 :(得分:3)
来自mysql-python on mac os 10.9.1
通过运行修复它:
导出CFLAGS = -Qunused-arguments export CPPFLAGS = -Qunused-arguments
在'pip install ...```
之前向Romeo Mihalcea道德回答他自己的问题。