Python安装PIL报错

使用pip install PIL安装PIL时报错:
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)
ERROR: No matching distribution found for PIL

使用pip安装PIL 时报错
原因:在Python3.7中PIL已更名为pillow
解决方法:pip install pillow
Python安装PIL报错_第1张图片
在程序中直接import PIL就可以使用了

你可能感兴趣的:(python)