我在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 install pillow
其他回答
这对我来说在Ubuntu 20.04上是有效的:
pip install image
在脚本中:
import image
你需要在python包中安装Image和pillow。 请放心,命令行将为您处理一切。
Hit
Python -m PIP安装镜像
在Windows操作系统上,您需要下载并安装。exe
https://pypi.python.org/pypi/Pillow/2.7.0
根据官方网站einstall Pillow的介绍,你可能想试试这个:
进入终端并运行:
Python3 -m PIP install——升级PIP
然后继续跑
源~ / . bash_profile
您可能错过了构建pil的python头文件。如果你用的是ubuntu之类的,它会是这样的
apt-get install python-dev