2014-03-29 126 views
0

我試圖用pip,easy_install和源代碼安裝Cython。而我正在上OSX Maverics以下錯誤:Os上的Cython安裝錯誤X

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 

我使用Python 2.7.5

pip version 1.4.1 

我怎樣才能解決這個問題?

+0

重複的:https://stackoverflow.com/questions/22313407/clang-error-unknown-argument-mno-fused-madd-python-package-installation-fa – ayyayyekokojambo

回答

4

這是小牛隊的問題。您可以繞過這個如下:

終端:

sudo CFLAGS=-Wunused-command-line-argument-hard-error-in-future pip install cython 

這將打壓錯誤,警告,讓您安裝用Cython。