Problems Installing (Easy_Install) Pil

Written by Martin Geber on August 22, 2007 at 9:06 p.m. Filed unter: LinuxPython.  4 Comments. Trackback URL.

One very basic Python library is PIL (Python Imaging Library). It is used for image manipulation.

To install packages, I usually use easy_install, but installing PIL using this tool, I got an error:

:~#easy_install PIL
Searching for PIL
Reading http://cheeseshop.python.org/pypi/PIL/
Reading http://www.pythonware.com/products/pil
Reading http://effbot.org/downloads/#Imaging
Reading http://cheeseshop.python.org/pypi/PIL/1.1.6
No local packages or download links found for PIL
error: Could not find suitable distribution for Requirement.parse('PIL')

Fortunately, I found someone, who shared my problem, so this is the way how it works:

#~: easy_install --find-links http://www.pythonware.com/products/pil/ Imaging

I hope this helps.

Comments

The comments also include all Trackbacks.

#1

Adam commented, on January 3, 2008 at 11:30 a.m.:

Thanks that line worked great.

 
#2

hide1713 commented, on January 25, 2008 at 2:45 p.m.:

Thanks. I think that is a bug

 
#3

Richard commented, on March 30, 2008 at 5:32 p.m.:

Thanks. Had the problem on a Webfaction hosted server and the tip worked a treat.

 
#4

VooDooNOFX commented, on April 9, 2008 at 8:34 a.m.:

Perfect! worked like a dream on Mac Os X, and debian. WOnder why it doesn't just work like other PYPI libs...odd

 
Post a Comment


Or

Your Way: Home » Thoughts » 2007 » August » Wednesday, 22 » Problems Installing (Easy_Install) Pil