Suziemac Tani
Suziemac Tani

Reputation: 455

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

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.

Upvotes: 3

Views: 7123

Answers (2)

Manthri Anirudh
Manthri Anirudh

Reputation: 1

You can use Pillow --> pip install Pillow

Upvotes: 0

jetlej
jetlej

Reputation: 3392

Try this:

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

Upvotes: 7

Related Questions