Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python - package installed with easy_install is not being detected (PIL 1.1.7)

I installed PIL with easy_install but for some reason when I run a file that uses it, I get:

ImportError: No module named PIL

Does anyone know why this could be?

I think it's also worth mentioning that I installed web.py through easy_install and it's working fine.

like image 459
CamelCaseGuy Avatar asked Feb 22 '11 23:02

CamelCaseGuy


4 Answers

I have the same problem. To me, it looks like a bug in PIL easy_install process. The library is installed, but you have to leave out PIL from imports (aka import Image works), which is obviously wrong.

To solve, don't use easy_install to perform the install. Download the tar package and python setup.py install it. This will work.

like image 97
Stefano Borini Avatar answered Nov 19 '22 07:11

Stefano Borini


Perhaps that file is using a different python via its shebang line? Try interactive interpreter and do a import pil and see if it works, if yes, then fixing the shebang line (#!/usr/bin/python) on top of file in the question might help.

like image 42
Senthil Kumaran Avatar answered Nov 19 '22 08:11

Senthil Kumaran


Does the file you are running use the same version of Python that you installed PIL to?

If, for e.g. the file uses python 2.7, but your system also has 2.6, and PIL was installed there, that may be the issue.

Using easy_install with a version number might help:

easy_install-X.X pil

so for python 2.7, it would be:

easy_install-2.7 pil

PIL also has some issues with naming when used with easy_install, see:

  1. http://www.gossamer-threads.com/lists/python/dev/778318
  2. The problem with installing PIL using virtualenv or buildout

But even with that you should still be able to import pil so I don't think that is the issue.

Hope this helps.

like image 34
sid Avatar answered Nov 19 '22 09:11

sid


if you're using MAC OS, I have written a little tutorial on how to install libjpeg, PIL and image successfully on MAC OS X

Hope this helps. Libjpeg, PIL, Snow leopard

like image 2
ApPeL Avatar answered Nov 19 '22 08:11

ApPeL