python怎么安装PIL(Python怎么安装pip)
python pil 怎么安装
关于Pillow与PIL
PIL(Python Imaging Library)是Python一个强大方便的图像处理库,名气也比较大。不过只支持到Python 2.7。
PIL官方网站:
Pillow是PIL的一个派生分支,但如今已经发展成为比PIL本身更具活力的图像处理库。目前最新版本是3.0.0。
Pillow的Github主页:
Pillow的文档(对应版本v3.0.0):
Pillow的文档中文翻译(对应版本v2.4.0):
Python 3.x 安装Pillow
给Python安装Pillow非常简单,使用pip或easy_install只要一行代码即可。
在命令行使用PIP安装:
pip install Pillow
或在命令行使用easy_install安装:
easy_install Pillow
安装完成后,使用from PIL import Image就引用使用库了。比如:
from PIL import Image
im = Image.open("bride.jpg")
im.rotate(45).show()
python安装PIL失败原因及解决方案
在windows下的虚拟环境安装PIL:
pip install PIL
出现报错信息:
原因:
经过查询资料发现,python2可以使用pip install PIL安装PIL第三方包。而我是使用的是python3,现在python3已经用Pillow代替PIL。
解决办法:
使用 pip install Pillow 安装即可,效果如下:
自学Python:解决Python3无法安装PIL三方库的办法
如果你是Python3的版本,安装PIL的时候,会出现下面的错误。
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)
ERROR: No matching distribution found for PIL
WARNING: You are using pip version 21.1.1; however, version 21.2.1 is available.
You should consider upgrading via the 'D:\python\Scripts\python.exe -m pip install --upgrade pip' command.
英文看不懂,可以找个翻译软件翻译一下。意思就是现在PIL没有支持python3的版本,目前只支持python2。那么在python3就不能用了吗?
当然不是,经过查询资料发现,在python3上使用Pillow代替PIL,只要安装Pillow就可以正常调用PIL的所有功能了。
安装Pillow后如果想要使用,不能使用import Pillow,执行会报下面的错误。
ModuleNotFoundError: No module named 'Pillow'
而是要直接使用import PIL调用。
_______________END______________