我在shell中使用这个命令来安装PIL:

easy_install PIL

然后我运行python并键入:import PIL。但是我得到了这个错误:

Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named PIL

我从来没有遇到过这样的问题,你觉得呢?


当前回答

我使用:

from pil import Image

而不是

from PIL import Image

这对我来说很有效

祝你一切顺利

其他回答

在shell中运行:

pip install Pillow

注意:PIL已弃用,枕头为后继。

在windows上,尝试检查PIL库位置的路径。在我的系统里,我注意到路径是

\Python26\Lib\site-packages\pil instead of \Python26\Lib\site-packages\PIL  

在将pil文件夹重命名为pil之后,我就可以加载pil模块了。

你需要在python包中安装Image和pillow。 请放心,命令行将为您处理一切。

Hit

Python -m PIP安装镜像

我也遇到了同样的问题,我通过检查pip (pip3——version)的版本来修复它,然后意识到我键入的是python<不正确的版本> filename.py而不是python<正确的版本> filename.py

这对我在Ubuntu 16.04上是有效的:

sudo apt-get install python-imaging

我在维基百科上搜索了大约半小时后找到了这个。