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

easy_install PIL

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

Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named 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安装枕头

其他回答

您可能错过了构建pil的python头文件。如果你用的是ubuntu之类的,它会是这样的

apt-get install python-dev
pip(3) uninstall Pillow
pip(3) uninstall PIL
pip(3) install Pillow

我找到了一个更简单的解决办法。使用虚拟环境。

pip install Pillow
from PIL import Image

这在macOS上适用

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

Hit

Python -m PIP安装镜像

我在windows 10上也有同样的问题,这对我来说很有效:

pip安装枕