我一直在寻找这个问题的答案,但我找不到它,所以在这里。
我正在尝试使用以下命令将带有 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
这种“权限被拒绝”的原因可能是什么?
我将它运行到一个管理员帐户中,它不要求输入密码或任何东西。
再次感谢你。