Could not find a version that satisfies the requirement Pillow
时间: 2024-05-17 11:10:16 浏览: 154
Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribu
"Could not find a version that satisfies the requirement Pillow" 这个错误通常是因为你尝试安装的 Pillow 版本与你当前环境不兼容。建议你检查一下你的 Python 版本以及已安装的 Pillow 版本,然后尝试安装与之兼容的 Pillow 版本。
如果你使用的是 Python3,可以使用以下命令安装最新版的 Pillow:
```
pip3 install Pillow
```
如果你需要安装特定版本的 Pillow,可以使用以下命令:
```
pip3 install Pillow==<version>
```
阅读全文