I have spent hours now trying to figure this out.

I do the following:

sudo apt-get install python-dev
sudo apt-get install libjpeg8-dev
sudo apt-get install libfreetype6 libfreetype6-dev
mkvirtualenv -p python2.7 --no-site-packages foobar
pip install PIL

Whenever I try to upload an image in my django-cms website I get an error message.

link|improve this question
2  
The least you can do is post the error message... – Mark van Lent May 26 '11 at 13:07
feedback

closed as not a real question by Anna Lear Jan 15 at 4:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

I've ran into the same issue while trying to use Django & Virtualenv - I couldn't upload images and after some research everything pointed towards PIL. I did try to reinstall the package but even with all the required libraries uploaded PIL still wouldn't support JPGs and PNGs.

Seems that Ubuntu peeps decided to moved the location of the libraries around (according to this fix: http://ubuntuforums.org/showpost.php?p=10804763&postcount=2).

My solution:

  1. Make sure you have all the libraries installed.

    sudo apt-get install libjpeg-dev libjpeg62 libjpeg62-dev zlib1g-dev libfreetype6 libfreetype6-dev

  2. Install Pillow, which is a saner package of PIL.

    pip install pillow (while in your virtualenv)

link|improve this answer
How did you make Django work with Pillow instead of PIL? I get: "To use ImageFields, you need to install PIL.." – Ron Cohen Jan 17 at 11:38
1  
@Ron Cohen: It's a drop in replacement - just a slightly differently packaged PIL. – stricjux Jan 19 at 16:57
feedback

It seems to me that you are not installing PIL into the virtualenv you created

pip install PIL -E /path/to/foobar
link|improve this answer
When doing mkvirtualenv, the new virtualenv gets also automatically activated, so the next line DOES install it into the virtualenv. – Martin Brochhaus May 28 '11 at 14:03
feedback

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