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

easy_install PIL

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

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

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


当前回答

用pil代替pil

from pil import Image

其他回答

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

pip install image

在脚本中:

import image

如果你使用水蟒:

conda install pillow

我使用:

from pil import Image

而不是

from PIL import Image

这对我来说很有效

祝你一切顺利

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

pip安装枕

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