ERROR: Could not find a version that satisfies the requirement PIL (from versions: none) ERROR: No matching distribution found for PIL、
时间: 2023-09-28 09:07:18 浏览: 88
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常意味着你需要安装Pillow包,因为Pillow是Python Imaging Library的后续版本。你可以使用以下命令安装Pillow:
```
pip install Pillow
```
如果你使用的是conda环境,你可以使用以下命令安装:
```
conda install pillow
```
安装完后,再次尝试导入PIL库,应该就能正常工作了。
阅读全文