我在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 (pip3——version)的版本来修复它,然后意识到我键入的是python<不正确的版本> filename.py而不是python<正确的版本> filename.py

其他回答

在windows 10上,我设法做到了:

cd "C:\Users\<your username>\AppData\Local\Programs\Python\Python37-32" 
python -m pip install --upgrade pip     <-- upgrading from 10.something to 19.2.2.
pip3 uninstall pillow
pip3 uninstall PIL
pip3 install image

之后在python (python 3.7在我的情况下),这工作得很好…

import PIL
from PIL import image

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

pip install Pillow
from PIL import Image

这在macOS上适用

而不是PIL使用Pillow它工作

easy_install Pillow

or

pip install Pillow

用pil代替pil

from pil import Image

我使用:

from pil import Image

而不是

from PIL import Image

这对我来说很有效

祝你一切顺利