解决Python 3.x 安装PIL失败的解决办法

问题描述:

Python 3.x 安装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 20.2.3; however, version 20.3.3 is available.
You should consider upgrading via the ‘d:\python\python.exe -m pip install --upgrade pip’
command.

我将pip版本更新后,更新后添加,也不可以。

解决Python 3.x 安装PIL失败的解决办法_第1张图片


原因分析:

提示:报错的有两条就是版本找不到合适的版本,我将将镜像源切换了,但仍然还是不行。后面发现居然我的==小蟒蛇版本过高了(PIL目前仅支持python2.X的版本,还不支持python3.X的版本。)==我们仅需将将python版本降低或者使用pillow,pillow版本是pil的分支,亦有相当强的文字处理能力。


解决方案:

想要达到相同的效果,我们使用pillow即可,在terminal输入:
pip install pillow

达到相同的效果。

常用的镜像源

http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
http://pypi.douban.com/simple/ 豆瓣
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学

你可能感兴趣的:(小知识点,python,python)