我在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
我从来没有遇到过这样的问题,你觉得呢?
当前回答
首先安装枕头与
pip install Pillow
或者如下
c:\Python35>python -m pip install Pillow
然后在python代码中调用
from PIL import Image
Pillow是PIL的一个分支,PIL是Python映像库,它不再被维护。但是,为了保持向后兼容性,使用旧的模块名称。”从枕头安装,但“没有模块命名枕头”- python2.7 - Windows 7 - python -m安装枕头
其他回答
你需要在python包中安装Image和pillow。 请放心,命令行将为您处理一切。
Hit
Python -m PIP安装镜像
pip(3) uninstall Pillow
pip(3) uninstall PIL
pip(3) install Pillow
你必须在python包中安装Image和pillow。
类型
python -m pip install image
或者运行命令提示符(在windows中),然后导航到scripts文件夹
cd C:\Python27\Scripts
然后运行以下命令
pip install image
我最近安装了Leap。我试过开球,但是打不起来。所以来到这里,发现了一个建议,从终端开始,看看是否有任何错误。
我的错误是错过了mlt。所以我从Yast安装了python-mlt模块并导入它,尝试启动,但下一个openshot说错过pil。
我按照Pillow的建议安装,因为Yast找不到pil和进口pil。运行正常,但没有启动,并显示错误丢失goocanvas。
我用Yast安装了goocanvas,用python导入,然后Openshot就启动了!!
终端中有很多错误,比如缺少vimeclient和很多属性错误。好吧,看看和它合作会不会有什么影响。
我也遇到了同样的问题,并尝试了上面列出的许多解决方案。
然后我想起我安装了多个版本的Python并且我使用PyCharm IDE(这是我得到这个错误消息的地方),所以在我的情况下的解决方案是:
在PyCharm:
进入“File>Settings>Project>Python Interpreter”
点击“+”(安装)
从列表中找到Pillow并安装它
希望这能帮助到任何可能有类似情况的人!