How may i install the Python Imaging Library to django environment?

django, python-imaging-library, ubuntu

Solution

Try this:

pip install PIL --allow-external PIL --allow-unverified PIL

Problem

I am currently finding it hard to install `PIL` on precise pangolin. I have followed this tutorial (http://www.sandersnewmedia.com/why/2012/04/16/installing-pil-virtualenv-ubuntu-1204-precise-pangolin/) When I do: ``` pip install PIL ``` I get the error: ``` Could not find any downloads that satisfy the requirement PIL No distributions at all found for PIL ``` Looked around google but to no avail.

Original source

Related problems