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

easy_install PIL

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

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

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


当前回答

在shell中运行:

pip install Pillow

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

其他回答

首先安装枕头与

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安装枕头

我使用:

pip install Pillow 

和pip在Lib\site-packages中安装PIL。当我把PIL搬到Lib时,一切都很好。我用的是Windows 10。

我使用:

from pil import Image

而不是

from PIL import Image

这对我来说很有效

祝你一切顺利

而不是PIL使用Pillow它工作

easy_install Pillow

or

pip install Pillow

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