When I install PIL using easy_install or buildout it installs in such way, that I must do 'import Image', not 'from PIL import Image'.

However, if I do "apt-get install python-imaging" or use "pip -E test_pil install PIL", all work fine.

Here are examples of how I trying to install PIL using virtualenv:

# virtualenv --no-site-packages test_pil
# test_pil/bin/easy_install PIL
# test_pil/bin/python
Python 2.5.1 (r251:54863, Feb  6 2009, 19:02:12) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import PIL
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named PIL

I see, that easy_install pack PIL into the Egg, and PIP does not. Same thing with buildbot, it uses eggs.

How could I install PIL properly, using easy_install or buildout?

link|improve this question

42% accept rate
feedback

3 Answers

up vote 32 down vote accepted

The PIL version packaged on pypi (by the author) is incompatible with setuptools and thus not easy_installable. People have created easy_installable versions elsewhere. Currently, you need to specify a find-links URL and use pip get a good package:

pip install --no-index -f http://dist.plone.org/thirdparty/ -U PIL

By using pip install with the --no-index you avoid running the risk of finding the PyPI (non-fixed) original of PIL. If you were to use easy_install, you must use a direct link to the source tarball of a corrected version; easy_install stubbornly still uses the PyPI link over the find-links URL:

easy_install http://dist.plone.org/thirdparty/PIL-1.1.7.tar.gz

To include PIL in a buildout, either specify the egg with the same version pin or use a versions section:

[buildout]
parts =
find-links =
    http://dist.plone.org/thirdparty/
eggs =
    PIL
versions = versions

[versions]
PIL = 1.1.7

Edit March 2011: Fixes to address the packaging issues have been merged into PIL's development tree now, so this workaround may soon be obsolete.

link|improve this answer
Is the author being notified about this, so that it gets fixed on pypi, too? – blueyed Mar 29 '10 at 23:20
I've understood that the author isn't interested in fixing this on pypi. – Martijn Pieters Apr 5 '10 at 15:52
1  
I tried the version shown in your example but I still had the same problem. I ended up using the installer from the pythonware website, then copied the PIL directory and PIL.pth file to the virtualenv, and it solved the problem for me. – tponthieux Feb 7 '11 at 6:45
This worked just fine, but had to manually rm -rf ./eggs/PIL* and then re-run ./bin/buildout. YMMV etc – David Miller Feb 7 '11 at 14:47
5  
Pillow is a fork of PIL made with the goal of fixing the packaging, it seems to be a drop-in replacement. – tvon Mar 11 '11 at 17:19
show 5 more comments
feedback

Use the friendly PIL fork: Pillow :-) It offers:

  • Full setuptools compatibility
  • Faster release cycle
  • No image code changes that differ from PIL (i.e. it aims to track all PIL image code changes, and make none of its own changes without reporting them upstream.)
  • Windows binaries

If PIL ever does exactly what Pillow does, then the fork will die. Until that happens, we have Pillow.

DISCLAIMER: I am the fork author, and Pillow was created mainly to make my Plone job easier (although it's great to see other folks using it too).

link|improve this answer
Thank you for your work! I also tried to get my pyramid buildout working with PIL but now I discovered this discussion and I replaced it with Pillow and it worked. :-) – therealmarv Jan 8 at 18:30
Glad to hear! Thanks for the comment – aclark Jan 10 at 3:16
feedback

I don't see a problem. You shouldn't need to import from PIL, so there is no issue.

Besides, PIL imports from Image et alia internally anyways, so you're not saving the world by using PIL.

link|improve this answer
1  
3rd party modules expect to import Image from the PIL package. You can't go round and change all of those for a project. – Martijn Pieters Mar 21 '10 at 8:23
@Martijn: If third-party code imports from the PIL package then they are wrong, since the very first line of code from the PIL tutorial is import Image. pythonware.com/library/pil/handbook/introduction.htm – Ignacio Vazquez-Abrams Mar 21 '10 at 8:25
5  
There is a long discussion about PIL's packaging problems elsewhere on the web, StackOverflow is not the place to expound on that. You'll notice that the Debian packaging places PIL in the PIL namespace too. In short, by not using a namespace PIL would conflict with other python modules named 'Image'. – Martijn Pieters Mar 21 '10 at 10:38
1  
Yep, there is no right or wrong here. Just distutils vs. setuptools compatibility (or lack of). – aclark Oct 14 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

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