我在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包中安装Image和pillow。
类型
python -m pip install image
或者运行命令提示符(在windows中),然后导航到scripts文件夹
cd C:\Python27\Scripts
然后运行以下命令
pip install image
其他回答
另一方面,我可以强烈推荐使用Pillow,它与PIL向后兼容,并且在更新的系统上可以更好地维护/工作。
安装好后就可以了
import PIL
or
from PIL import Image
等。
在Windows操作系统上,您需要下载并安装。exe
https://pypi.python.org/pypi/Pillow/2.7.0
如果你使用水蟒:
conda install pillow
有时候我在python中运行Unitest时会遇到这种错误。解决方案是卸载并在虚拟环境中安装相同的包。
使用命令:
pip uninstall PIL
and
pip install PIL
如果由于任何原因出现错误,请在命令的开头添加sudo,并在按enter键后输入密码。
而不是PIL使用Pillow它工作
easy_install Pillow
or
pip install Pillow