我在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
我从来没有遇到过这样的问题,你觉得呢?
当前回答
我使用:
from pil import Image
而不是
from PIL import Image
这对我来说很有效
祝你一切顺利
其他回答
我也遇到了同样的问题,我通过检查pip (pip3——version)的版本来修复它,然后意识到我键入的是python<不正确的版本> filename.py而不是python<正确的版本> filename.py
我使用conda-forge安装枕头版本5,这似乎对我有用:
conda install --channel conda-forge pillow=5
正常的conda安装枕头不为我工作。
我也遇到了同样的问题,并尝试了上面列出的许多解决方案。
然后我想起我安装了多个版本的Python并且我使用PyCharm IDE(这是我得到这个错误消息的地方),所以在我的情况下的解决方案是:
在PyCharm:
进入“File>Settings>Project>Python Interpreter”
点击“+”(安装)
从列表中找到Pillow并安装它
希望这能帮助到任何可能有类似情况的人!
我在windows 10上也有同样的问题,这对我来说很有效:
pip安装枕
用pil代替pil
from pil import Image