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 thro开发者_如何学Cugh easy_install and it's working fine.
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.
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.
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:
- http://www.gossamer-threads.com/lists/python/dev/778318
- 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.
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
I had the same problem configuring PIL after installing mac os Lion. This post The problem with installing PIL using virtualenv or buildout shows the directives to install using a link with a fixed version.
Regards, AT
精彩评论