当试图导入- 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发布于 2022-01-19 15:43:27
解决办法:
pip install Pillow在此之后,请确保它有效:
from PIL import Imagehttps://stackoverflow.com/questions/70773518
复制相似问题