I'm trying to install ReportLab 2.4 on a 10.04.2 server with virtualenv. In the ReportLab_2_4 folder I use:

python setup.py install

and the error I get:

error: command 'gcc' failed with exit status 1

link|improve this question
What GCC do you have ? - Try updating it as it may have changed. – Louis Sep 6 '11 at 20:02
4  
If you are running debian based system try: sudo apt-get install python-dev – Skirmantas Sep 6 '11 at 20:49
Also you can scroll up through the error log to the line which tells what exactly the error is. You are missing some development libraries. This command might filter out useful message: python setup.py install 2>&1 | grep missing – Skirmantas Sep 6 '11 at 20:52
GCC is the newest – user780862 Sep 7 '11 at 12:23
@Skirmantas: both tips was usefull. Appreciate that! – user780862 Sep 7 '11 at 12:24
show 1 more comment
feedback

2 Answers

As Skimantas said, I think you should install python-dev. sudo apt-get install python-dev and I was able to install reportlab into my home directory with command "pip install reportlab" without sudo as mentioned earlier answer. I need only root access to install python-dev.

Shortly..

I installed virtualenv

sudo apt-get install python-setuptools
sudo easy_install virtualenv
virtualenv --no-site-packages virtual01`

I installed

sudo apt-get install python-dev

I activate my virtual environment just to be sure...

source  ~/virtual01/bin/activate

cd ~/virtual01/bin
pip reportlab

And that's it.

(I just recorded what I did in Ubuntu 10.04 LTS)

link|improve this answer
I get the same error, using both pip and easy_install. The most pertinent error is this: /env/build/reportlab/src/rl_addons/rl_accel/_rl_accel.c:11:20: fatal error: Python.h: No such file or directory. I have installed python-dev. And building outside of the virtualenv works fine. But as soon as the env is activated it won't find Python.h anymore :( – exhuma Oct 12 '11 at 11:18
feedback

try by using pip

sudo pip install reportlab
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.