Python3中安装PIL库时出现错误 ERROR: Could not find a version that satisfies the requirement PIL

由于需要做一次技术演示,在公司的电脑重新装pycharm和搭Python环境,

在装第三方库的时候,一直报错,无法安装第三方库。

Python3中安装PIL库时出现错误 ERROR: Could not find a version that satisfies the requirement PIL_第1张图片

 

尝试了跟新pip版本:

 结果:false

尝试重新卸载重装Python环境和pycharm

结果:false

重新配置环境变量

结果:false

修改pip方法

结果:false

查了几天的资料,各种修改,都无功而返,打算放弃用自己电脑的时候,意外发现可以装第三方库了。

原因是fiddler代理开启了。

Python3中安装PIL库时出现错误 ERROR: Could not find a version that satisfies the requirement PIL_第2张图片

关掉就可以安装第三方库了。 

Python3中安装PIL库时出现错误 ERROR: Could not find a version that satisfies the requirement PIL_第3张图片

然后安装PIL,仍然报错。 去网上查了一下发现,PIL较多用于2.7版本的Python中,到python3版本已经用Pillow代替PIL了。
所以,应该去安装Pillow库,引入的命令方式也从:import image变为:from PIL import Image

Python3中安装PIL库时出现错误 ERROR: Could not find a version that satisfies the requirement PIL_第4张图片 

你可能感兴趣的:(Python3中安装PIL库时出现错误 ERROR: Could not find a version that satisfies the requirement PIL)