我在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

其他回答

我使用:

pip install Pillow 

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

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

Hit

Python -m PIP安装镜像

Windows 10上的Python 3.8。这些答案的组合对我很有用。请参阅下面的独立工作示例。注释掉的行应该在命令行中执行。

import requests
import matplotlib.pyplot as plt
# pip uninstall pillow
# pip uninstall PIL
# pip install image
from PIL import Image
url = "https://images.homedepot-static.com/productImages/007164ea-d47e-4f66-8d8c-fd9f621984a2/svn/architectural-mailboxes-house-letters-numbers-3585b-5-64_1000.jpg"
response = requests.get(url, stream=True)
img = Image.open(response.raw)
plt.imshow(img)
plt.show()

根据官方网站einstall Pillow的介绍,你可能想试试这个:

进入终端并运行:

Python3 -m PIP install——升级PIP

然后继续跑

源~ / . bash_profile

有时候我在python中运行Unitest时会遇到这种错误。解决方案是卸载并在虚拟环境中安装相同的包。

使用命令:

pip uninstall PIL

and

pip install  PIL 

如果由于任何原因出现错误,请在命令的开头添加sudo,并在按enter键后输入密码。