I've been looking for an answer to this issue but I couldn't find it, so here it is.

I'm trying to install Uniconvertor with a setup.py file into a MacOS X Lion (Python 2.7.2) using:

python setup.py install

Then I get the following error code:

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

I looked for the 'gcc-4.2' file in the Developer/usr/bin folder and it wasn't there, but there's a 'llvm-gcc.4.2' file that makes me think I should change the compiler from 'gcc-4.2' to the 'llvm-gcc.4.2' one.

I'm kind of new to Mac and I don't know how else to fix it.

Thanks.

Edit:

I tried using:

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

And I get a little more progress, but then a new error:

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

What could be the cause of this 'Permission denied'?

I'm running it into an Admin account and it doesn't ask for a password or anything.

Thank you again.

link|improve this question
As of Xcode 4.2, Xcode no longer includes gcc-4.2. Usually, llvm-gcc-4.2 or clang is a suitable substitute, but you might want to get in touch with the project's maintainers to ask why the build system explicitly requests gcc-4.2 instead of using the default system compiler. – servn Dec 14 '11 at 9:04
feedback

2 Answers

I was able to resolve this by downloading one of these: https://github.com/kennethreitz/osx-gcc-installer/downloads

link|improve this answer
feedback

Try sudo python setup.py install.

Command line utilities will not ask you to escalate privileges and so must be run in sudo mode when the situation requires it (e.g., library installation into a global location).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.