我在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
from PIL import Image

这在macOS上适用

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

sudo apt-get install python-imaging

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

我使用conda-forge安装枕头版本5,这似乎对我有用:

conda install --channel conda-forge pillow=5

正常的conda安装枕头不为我工作。

在shell中运行:

pip install Pillow

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

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

Hit

Python -m PIP安装镜像