gcc-4.2失败,退出状态为1

我一直在寻找这个问题的答案,但我找不到它,所以在这里。

我正在尝试使用setup.py文件将Uniconvertor安装到MacOS X Lion(Python 2.7.2)中:

python setup.py install 

然后我得到以下错误代码:

 running install running build running build_py running build_ext building 'uniconvertor.app.modules.streamfilter' extension gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -g -O2 -DNDEBUG -g -O3 -arch i386 -arch x86_64 -DMAJOR_VERSION=1 -DMINOR_VERSION=1 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/modules/filter/streamfilter.c -o build/temp.macosx-10.6-intel-2.7/src/modules/filter/streamfilter.o unable to execute gcc-4.2: No such file or directory error: command 'gcc-4.2' failed with exit status 1 

我在Developer / usr / bin文件夹中查找了'gcc-4.2'文件,但是它没有,但是有一个'llvm-gcc.4.2'文件让我觉得我应该把编译器从'gcc-4.2 '到'llvm-gcc.4.2'之一。

我对Mac很陌生,我不知道如何解决它。

谢谢。

编辑:

我试过使用:

 cd /Developer/usr/bin ln -s llvm-gcc-4.2 gcc-4.2 

而且我得到了更多的进展,但是又出现了一个新的错误:

 running install_lib creating /Library/Python/2.7/site-packages/uniconvertor error: could not create '/Library/Python/2.7/site-packages/uniconvertor': Permission denied 

什么可能是这个“权限被拒绝”的原因?

我运行它到一个pipe理员帐户,它不要求密码或任何东西。

再次感谢你。

尝试以下操作:

  1. 安装最新的Xcode。
  2. 从Xcode的“首选项”菜单中,安装命令行工具(下载/组件选项卡)。

我可以通过下载其中一个来解决这个问题: https : //github.com/kennethreitz/osx-gcc-installer/releases

尝试sudo python setup.py install

命令行实用程序不会要求您提升权限,因此必须在情况要求时(例如,将库安装到全局位置)以sudo模式运行。

对于较新版本的OS X(包括macOS),您只需要打开一个terminal并input:

 xcode-select --install 

我试过@plusjeff的答案,但Xcode 4.6不会在主目录中创build一个/ Developer文件夹。

因此,我用一个符号链接对它进行了整理:

 sudo ln -s /Applications/Xcode.app/Contents/Developer /Developer 

它的工作!

我安装了OSX 10.7.5

希望这可以帮助!

由于运行过时的pip版本,我得到了这个错误。 我运行pip install --upgrade pip ,错误消失了。 有些事情要考虑,如果你已经安装了Xcode命令行工具,仍然得到错误。

我用pip安装python库时遇到了这个问题。

运行xcode-select --install ,我仍然得到这个问题。

所以我创build了一个从“gcc”到“gcc-4.2”的符号链接,并且为我工作。

ln -s /Applications/Xcode.app/Contents/Developer/usr/bin/gcc /usr/local/bin/gcc-4.2

pip install --upgrade pip没有帮助解决我的问题。

DanFreak的回答也没有帮助我,但它确实给了我实际上为我工作的想法。

Interesting Posts