我在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
我从来没有遇到过这样的问题,你觉得呢?
当前回答
有时候我在python中运行Unitest时会遇到这种错误。解决方案是卸载并在虚拟环境中安装相同的包。
使用命令:
pip uninstall PIL
and
pip install PIL
如果由于任何原因出现错误,请在命令的开头添加sudo,并在按enter键后输入密码。
其他回答
您可能错过了构建pil的python头文件。如果你用的是ubuntu之类的,它会是这样的
apt-get install python-dev
我最近安装了Leap。我试过开球,但是打不起来。所以来到这里,发现了一个建议,从终端开始,看看是否有任何错误。
我的错误是错过了mlt。所以我从Yast安装了python-mlt模块并导入它,尝试启动,但下一个openshot说错过pil。
我按照Pillow的建议安装,因为Yast找不到pil和进口pil。运行正常,但没有启动,并显示错误丢失goocanvas。
我用Yast安装了goocanvas,用python导入,然后Openshot就启动了!!
终端中有很多错误,比如缺少vimeclient和很多属性错误。好吧,看看和它合作会不会有什么影响。
我使用:
from pil import Image
而不是
from PIL import Image
这对我来说很有效
祝你一切顺利
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