我在shell中使用这个命令来安装PIL:
easy_install PIL
然后我运行python并键入:import PIL。但是我得到了这个错误:
Traceback (most recent call last):
File "<console>", line 1, in <module>
ImportError: No module named PIL
我从来没有遇到过这样的问题,你觉得呢?
我在shell中使用这个命令来安装PIL:
easy_install PIL
然后我运行python并键入:import PIL。但是我得到了这个错误:
Traceback (most recent call last):
File "<console>", line 1, in <module>
ImportError: No module named PIL
我从来没有遇到过这样的问题,你觉得呢?
当前回答
我使用conda-forge安装枕头版本5,这似乎对我有用:
conda install --channel conda-forge pillow=5
正常的conda安装枕头不为我工作。
其他回答
我找到了一个更简单的解决办法。使用虚拟环境。
pip install Pillow
from PIL import Image
这在macOS上适用
在windows上,尝试检查PIL库位置的路径。在我的系统里,我注意到路径是
\Python26\Lib\site-packages\pil instead of \Python26\Lib\site-packages\PIL
在将pil文件夹重命名为pil之后,我就可以加载pil模块了。
你必须在python包中安装Image和pillow。
类型
python -m pip install image
或者运行命令提示符(在windows中),然后导航到scripts文件夹
cd C:\Python27\Scripts
然后运行以下命令
pip install image
安装特定版本:
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
在一些安装PIL,你必须这样做
import Image
而不是进口PIL (PIL实际上并不总是这样进口)。由于import Image对您有效,这意味着您实际上已经安装了PIL。
对于库和Python模块使用不同的名称是不寻常的,但PIL(某些版本)选择了这样的名称。
您可以从官方教程中获得有关如何使用此模块的更多信息。
PS:事实上,在某些安装中,导入PIL是可以工作的,这增加了混乱。正如@JanneKarila所发现的,文档中的一个例子证实了这一点,还有一些MacPorts PIL包的最新版本(1.1.7)。