问题描述
我尝试使用命令pip install fabric
在macOS x Maverick上的virtualenv上的Fabric上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
- Xcode版本:Xcode 5.1(5B130a)
- 命令行工具:Xcode 5.1(commandline_tools_os_x_mavericks_for_xcode__march_2014.dmg)
- python 2.7.6
- 点1.5.4
完整的日志: :
在我的系统上pip install fabric
可以正常工作,但是当我激活virtualenv并尝试在其上安装Fabric时,它没有效果。
知道我的问题在哪里吗?
1楼
从
通过运行修复它:
导出CFLAGS =-带参数的参数导出CPPFLAGS =-带参数的参数
在安装pip ...之前
罗密欧·米哈尔恰(Romeo Mihalcea)回答自己的问题的道具。