我似乎无法在10.9.1上安装mysql-python。我怀疑它与最新的命令行工具更新有关,但我不是专家:
Running MySQL-python-1.2.5/setup.py -q bdist_egg --dist-dir /var/folders/s7/j138zlt172nf6qqpn98rhzhm0000gn/T/easy_install-kq86vo/MySQL-python-1.2.5/egg-dist-tmp-edndmM
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: Setup script exited with error: command 'cc' failed with exit status 1
知道如何克服这个问题吗?
与pip相同的错误。
答案 0 :(得分:6)
我只想提高你的答案,这对我有帮助:
在MacShell上执行以下操作:
sudo su
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
pip install MySQL-python
否则这些选项将无法使用。
干杯!
答案 1 :(得分:4)
通过运行修复它:
export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments
在'pip install ...```
之前