2014-03-27 106 views
33

與其他許多人一樣,我在安裝python庫(以tar下載,然後解壓縮)時遇到問題。「'cc'失敗,退出狀態1」安裝python庫時出現錯誤

rodolphe-mbp:python-Levenshtein-0.11.2 Rodolphe$ sudo python setup.py install 
running install 
running bdist_egg 
running egg_info 
writing requirements to python_Levenshtein.egg-info/requires.txt 
writing python_Levenshtein.egg-info/PKG-INFO 
writing namespace_packages to python_Levenshtein.egg-info/namespace_packages.txt 
writing top-level names to python_Levenshtein.egg-info/top_level.txt 
writing dependency_links to python_Levenshtein.egg-info/dependency_links.txt 
writing entry points to python_Levenshtein.egg-info/entry_points.txt 
reading manifest file 'python_Levenshtein.egg-info/SOURCES.txt' 
reading manifest template 'MANIFEST.in' 
warning: no files found matching '*' under directory 'docs' 
warning: no previously-included files matching '*pyc' found anywhere in distribution 
warning: no previously-included files matching '.project' found anywhere in distribution 
warning: no previously-included files matching '.pydevproject' found anywhere in distribution 
writing manifest file 'python_Levenshtein.egg-info/SOURCES.txt' 
installing library code to build/bdist.macosx-10.9-intel/egg 
running install_lib 
running build_ext 
building 'Levenshtein' extension 
cc -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c Levenshtein.c -o build/temp.macosx-10.9-intel-2.7/Levenshtein.o 
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 

如在別處建議的,我試圖進入終端「ARCHFLAGS = -Wno誤差=未使用的命令行參數的硬錯誤功能於未來須藤蟒的setup.py安裝」,但是沒有成功。

有沒有解決這個問題似乎已經出現在Xcode 5.1?

回答

7

與安裝(程序文件夾內,你拉下來)

sudo -E python setup.py install 

做的工作!

72

運行這兩條線在你的shell,然後建立:

export CFLAGS=-Qunused-arguments 
export CPPFLAGS=-Qunused-arguments 

這些出口告訴編譯器忽略未使用的參數,而不是抱怨他們。


的原因似乎是,Python是使用它內置的選項編譯模塊,但這些選擇不再在小牛隊的工作之一:

鐺3.4蘋果是航運默認在未知標誌上出現錯誤,但CPython使用與最初編譯相同的一組標誌來構建模塊。

(來源:https://stackoverflow.com/a/22315129/65295

很多人都遇到了此:

+0

非常感謝!我之前嘗試過,沒有成功。然而,直接安裝-E標誌完成了這項工作。 – Rodolphe

+7

如果你是'sudo'-ing,那麼是的,你需要'sudo -E'來傳播環境變量。對於只是建立(在你有寫權限的目錄中),它應該沒有關係。 – Seth

+0

在virtualenv它似乎工作! – JhovaniC

27

對我的問題是我剛剛升級了XCode並需要安裝命令行工具(請參閱this answer)。

運行後xcode-select --install我的python庫安裝正常。

+1

是的,這固定我的python安裝問題。 – Rao

+1

爲我工作;萬分感謝! – Aravind

相關問題