我在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
我从来没有遇到过这样的问题,你觉得呢?
当前回答
我使用conda-forge安装枕头版本5,这似乎对我有用:
conda install --channel conda-forge pillow=5
正常的conda安装枕头不为我工作。
其他回答
另一方面,我可以强烈推荐使用Pillow,它与PIL向后兼容,并且在更新的系统上可以更好地维护/工作。
安装好后就可以了
import PIL
or
from PIL import Image
等。
在shell中运行:
pip install Pillow
注意:PIL已弃用,枕头为后继。
我使用:
pip install Pillow
和pip在Lib\site-packages中安装PIL。当我把PIL搬到Lib时,一切都很好。我用的是Windows 10。
如果你使用水蟒:
conda install pillow
您可能错过了构建pil的python头文件。如果你用的是ubuntu之类的,它会是这样的
apt-get install python-dev