我在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
我从来没有遇到过这样的问题,你觉得呢?
当前回答
另一方面,我可以强烈推荐使用Pillow,它与PIL向后兼容,并且在更新的系统上可以更好地维护/工作。
安装好后就可以了
import PIL
or
from PIL import Image
等。
其他回答
我使用:
pip install Pillow
和pip在Lib\site-packages中安装PIL。当我把PIL搬到Lib时,一切都很好。我用的是Windows 10。
你必须在python包中安装Image和pillow。
类型
python -m pip install image
或者运行命令提示符(在windows中),然后导航到scripts文件夹
cd C:\Python27\Scripts
然后运行以下命令
pip install image
我使用conda-forge安装枕头版本5,这似乎对我有用:
conda install --channel conda-forge pillow=5
正常的conda安装枕头不为我工作。
我也遇到了同样的问题,并尝试了上面列出的许多解决方案。
然后我想起我安装了多个版本的Python并且我使用PyCharm IDE(这是我得到这个错误消息的地方),所以在我的情况下的解决方案是:
在PyCharm:
进入“File>Settings>Project>Python Interpreter”
点击“+”(安装)
从列表中找到Pillow并安装它
希望这能帮助到任何可能有类似情况的人!
安装特定版本:
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