Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need uWSGI for running a django project. SO when i'm trying to install uWSGI, its giving me an error saying "Exception: you need a C compiler to build uWSGI". But mac comes with gcc compiler I've downloaded uWSGI from "http://projects.unbit.it/uwsgi/wiki/WikiStart#Getit" and tried to install by the command "python setup.py install" This is the error i got while installing uWSGI

running install using profile: buildconf/default.ini detected include path: ['/usr/local/include', '/Developer/usr/llvm-gcc-4.2/lib/gcc/i686-apple darwin11/4.2.1/include', '/usr/include', '/System/Library/Frameworks', '/Library/Frameworks'] Traceback (most recent call last): File "setup.py", line 98, in distclass=uWSGIDistribution, File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/core.py", line 152, in setup dist.run_commands() File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 953, in run_commands self.run_command(cmd) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 972, in run_command cmd_obj.run() File "setup.py", line 61, in run conf = uc.uConf(get_profile()) File "/Users/jay/Downloads/Softwares/Work/uwsgi-1.2.4/uwsgiconfig.py", line 340, in init raise Exception("you need a C compiler to build uWSGI") Exception: you need a C compiler to build uWSGI

share|improve this question
So what happens when you type gcc from the command line? – Daniel Roseman Jul 26 '12 at 12:48
It says "i686-apple-darwin11-llvm-gcc-4.2: no input files" when i type gcc in terminal – Jay Jul 26 '12 at 18:52
I would guess you have to install the developer tools, namely XCode. When you install XCode you can select different packages. There you'll have to select "UNIX development support". After that, try installing again. – Jens Jul 27 '12 at 9:10
I already have xcode version 4.2.1 – Jay Jul 27 '12 at 10:47

2 Answers

gcc already installed, just export CC=gcc will be ok.

share|improve this answer
thanks, but how to export CC=gcc, i tried "export CC=gcc" in the terminal. but it did not work out – Jay Aug 5 '12 at 19:24
This worked for me. this worked even from within a virtualenv. – Ben G Mar 7 at 12:43

distutils is probably returning something like "gcc-4.2" instead of plain old "gcc".

With sudo, etc., you probably want to do something like this:

sudo CC=gcc pip install uwsgi
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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