Martin Geber
Martin is student at EUFH, Cologne, DE
working casually at DataCollect & EWE
who loves economies, web-technology
and all things J.K. Rowling.
Learn More.
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.
Perfect! worked like a dream on Mac Os X, and debian. WOnder why it doesn't just work like other PYPI libs...odd
Python Code is Poetry
© Copyright 1987-2008
Martin Geber
Django | XHTML 1.1 | CSS | Imprint
Adam commented, on January 3, 2008 at 11:30 a.m.:
Thanks that line worked great.