我在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。 请放心,命令行将为您处理一切。
Hit
Python -m PIP安装镜像
其他回答
您可能错过了构建pil的python头文件。如果你用的是ubuntu之类的,它会是这样的
apt-get install python-dev
根据官方网站einstall Pillow的介绍,你可能想试试这个:
进入终端并运行:
Python3 -m PIP install——升级PIP
然后继续跑
源~ / . bash_profile
解决这个问题最干净的方法是遵循以下步骤。
步骤1:卸载PIL包
pip uninstall PIL
第二步:在windows操作系统上使用pip安装枕头,如下图所示。对于其他环境,请检查文章No module named PIL
在Windows上
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
步骤3:Python Imaging Library中最重要的类是Image类,您可以如下所示导入它。
from PIL import Image
im = Image.open("myimage.jpg")
如果成功,该函数返回一个Image对象。你现在可以使用实例属性来检查文件内容:
print(im.format, im.size, im.mode)
#Output: PPM (512, 512) RGB
在一些安装PIL,你必须这样做
import Image
而不是进口PIL (PIL实际上并不总是这样进口)。由于import Image对您有效,这意味着您实际上已经安装了PIL。
对于库和Python模块使用不同的名称是不寻常的,但PIL(某些版本)选择了这样的名称。
您可以从官方教程中获得有关如何使用此模块的更多信息。
PS:事实上,在某些安装中,导入PIL是可以工作的,这增加了混乱。正如@JanneKarila所发现的,文档中的一个例子证实了这一点,还有一些MacPorts PIL包的最新版本(1.1.7)。
在Windows操作系统上,您需要下载并安装。exe
https://pypi.python.org/pypi/Pillow/2.7.0