web-dev-qa-db-ja.com

インストール時の「 'cc'は終了ステータス1で失敗しました」エラーpython library

他の多くの人と同様に、pythonライブラリ(tarとしてダウンロードしてから抽出)のインストールに問題があります。

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-error = unused-command-line-argument-hard-error-in-future Sudo python setup.py install」と入力しようとしましたが、失敗。

Xcode 5.1で発生したと思われるこの問題を回避する方法はありますか?

36
Rodolphe

でインストール(プルダウンしたプログラムフォルダー内)

Sudo -E python setup.py install

仕事をしました!

8
Rodolphe

ビルドする前に、シェルで次の2行を実行します。

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

それらのエクスポートは、コンパイラーに文句を言うのではなく、未使用の引数を無視するように指示します。


その理由は、Pythonは、それが構築されたオプションを使用してモジュールをコンパイルしていることです。ただし、これらのオプションの1つはmavericksで動作しません。

clang 3.4 Appleはデフォルトで不明なフラグのエラーに出荷されますが、CPythonは最初にコンパイルされた同じフラグセットを使用してモジュールを構築します。

(from: https://stackoverflow.com/a/22315129/65295

多くの人々がこれに遭遇しています:

76
Seth

私にとって問題は、XCodeをアップグレードしたばかりで、コマンドラインツールをインストールする必要があることでした( この回答 を参照)。

xcode-select --installを実行した後、my pythonライブラリは正常にインストールされました。

31
YPCrumble