我在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 10上也有同样的问题,这对我来说很有效:

pip安装枕

其他回答

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

类型

python -m pip install image 

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

cd C:\Python27\Scripts

然后运行以下命令

pip install image

在一些安装PIL,你必须这样做

import Image

而不是进口PIL (PIL实际上并不总是这样进口)。由于import Image对您有效,这意味着您实际上已经安装了PIL。

对于库和Python模块使用不同的名称是不寻常的,但PIL(某些版本)选择了这样的名称。

您可以从官方教程中获得有关如何使用此模块的更多信息。

PS:事实上,在某些安装中,导入PIL是可以工作的,这增加了混乱。正如@JanneKarila所发现的,文档中的一个例子证实了这一点,还有一些MacPorts PIL包的最新版本(1.1.7)。

这对我来说在Ubuntu 20.04上是有效的:

pip install image

在脚本中:

import image
pip(3) uninstall Pillow
pip(3) uninstall PIL
pip(3) install Pillow

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

sudo apt-get install python-imaging

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