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

升级的枕头

sudo pip3 install --upgrade Pillow

在windows10中出现依赖项错误 使用代码:easy_install而不是pip install

easy_install Pillow 

使用简易安装进行升级

sudo easy_install --upgrade  Pillow

在OSX系统上安装模块: 使用代码:brew install代替pip install

brew install Pillow 

不使用Pip:

 sudo apt-get install -y Pillow 

CentOS7或Linux Fedora操作系统:

yum -y install Pillow 

或者尝试Fedora

sudo dnf install Pillow 

如果Homebrew在macOS上搞砸了你的路径:

python -m pip install Pillow 

对于Python3 MacOs Homebrew螺丝

python3 -m pip install Pillow

从列表MacOs验证模块

pip freeze | grep  Pillow

作为python包管理器在Anaconda上执行

 conda install -c anaconda Pillow 

其他回答

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

使用命令:

pip uninstall PIL

and

pip install  PIL 

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

在一些安装PIL,你必须这样做

import Image

而不是进口PIL (PIL实际上并不总是这样进口)。由于import Image对您有效,这意味着您实际上已经安装了PIL。

对于库和Python模块使用不同的名称是不寻常的,但PIL(某些版本)选择了这样的名称。

您可以从官方教程中获得有关如何使用此模块的更多信息。

PS:事实上,在某些安装中,导入PIL是可以工作的,这增加了混乱。正如@JanneKarila所发现的,文档中的一个例子证实了这一点,还有一些MacPorts PIL包的最新版本(1.1.7)。

在Windows操作系统上,您需要下载并安装。exe

https://pypi.python.org/pypi/Pillow/2.7.0

在shell中运行:

pip install Pillow

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

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