vote up -1 vote down star

easy_install pil results in an error:

Searching for pil
Reading http://pypi.python.org/simple/pil/
Reading http://www.pythonware.com/products/pil
Reading http://effbot.org/zone/pil-changes-115.htm
Reading http://effbot.org/downloads/#Imaging
No local packages or download links found for pil
error: Could not find suitable distribution for Requirement.parse(‘pil’)

Any ideas?

--

UPDATE: Hm, asking it to find-links on the Python Ware site seems to be working:

easy_install -f http://www.pythonware.com/products/pil/ Imaging

Got a heap of warnings along the way though. I’ll see how it turns out.

--

UPDATE: I can import it in Python using import Image, but when I tell Django to syncdb I still get the following error:

Error: One or more models did not validate:
core.userprofile: “avatar”: To use ImageFields, you need to install the Python Imaging Library. Get it at http://www.pythonware.com/products/pil/ .

I'm using an ImageField in one of my models.

flag

75% accept rate
What's your OS? – Pyetras Jun 15 at 11:50

4 Answers

vote up 3 vote down

Of course PIL is on PyPi! Specifically, it's right here.

link|flag
vote up 0 vote down

import Image

Django tries to import PIL directly:

from PIL import Image

You should check presence of PIL directory in your site-packages

link|flag
vote up 1 vote down

easy_install is case-sensitive. The package is under PIL.

link|flag
vote up 0 vote down

workaround is in easy_install PIL egg directory create link to this directory in name "PIL"

link|flag

Your Answer

Get an OpenID
or

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