我在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
我从来没有遇到过这样的问题,你觉得呢?
当前回答
根据官方网站einstall Pillow的介绍,你可能想试试这个:
进入终端并运行:
Python3 -m PIP install——升级PIP
然后继续跑
源~ / . bash_profile
其他回答
用pil代替pil
from pil import Image
另一方面,我可以强烈推荐使用Pillow,它与PIL向后兼容,并且在更新的系统上可以更好地维护/工作。
安装好后就可以了
import PIL
or
from PIL import Image
等。
我使用:
from pil import Image
而不是
from PIL import Image
这对我来说很有效
祝你一切顺利
在windows上,尝试检查PIL库位置的路径。在我的系统里,我注意到路径是
\Python26\Lib\site-packages\pil instead of \Python26\Lib\site-packages\PIL
在将pil文件夹重命名为pil之后,我就可以加载pil模块了。
在Windows操作系统上,您需要下载并安装。exe
https://pypi.python.org/pypi/Pillow/2.7.0