from PIL import Image报错

ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)
ERROR: No matching distribution found for PIL

报错原因:PIL导包是用的from PIL import Image,但是安装的时候是Pillow库

正确的包名为:Pillow

安装命令:

pip install Pillow

另外还提示pip不是最新版本(这个可以忽略)

如果想更新可 参考如下命令:

from PIL import Image报错_第1张图片

你可能感兴趣的:(python,python,笔记)