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

easy_install PIL

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

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

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


当前回答

在Windows操作系统上,您需要下载并安装。exe

https://pypi.python.org/pypi/Pillow/2.7.0

其他回答

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

sudo apt-get install python-imaging

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

而不是PIL使用Pillow它工作

easy_install Pillow

or

pip install Pillow

用pil代替pil

from pil import Image

你必须在python包中安装Image和pillow。

类型

python -m pip install image 

或者运行命令提示符(在windows中),然后导航到scripts文件夹

cd C:\Python27\Scripts

然后运行以下命令

pip install image

首先安装枕头与

pip install Pillow

或者如下

c:\Python35>python -m pip install Pillow

然后在python代码中调用

from PIL import Image

Pillow是PIL的一个分支,PIL是Python映像库,它不再被维护。但是,为了保持向后兼容性,使用旧的模块名称。”从枕头安装,但“没有模块命名枕头”- python2.7 - Windows 7 - python -m安装枕头