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

easy_install PIL

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

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

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


当前回答

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

pip install image

在脚本中:

import image

其他回答

而不是PIL使用Pillow它工作

easy_install Pillow

or

pip install Pillow

我使用:

pip install Pillow 

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

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

pip install image

在脚本中:

import image

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()

我最近安装了Leap。我试过开球,但是打不起来。所以来到这里,发现了一个建议,从终端开始,看看是否有任何错误。

我的错误是错过了mlt。所以我从Yast安装了python-mlt模块并导入它,尝试启动,但下一个openshot说错过pil。

我按照Pillow的建议安装,因为Yast找不到pil和进口pil。运行正常,但没有启动,并显示错误丢失goocanvas。

我用Yast安装了goocanvas,用python导入,然后Openshot就启动了!!

终端中有很多错误,比如缺少vimeclient和很多属性错误。好吧,看看和它合作会不会有什么影响。