python3.x:No matching distribution found for PIL
时间: 2023-09-24 18:13:37 浏览: 130
python PIL
5星 · 资源好评率100%
这个问题一般是因为你使用了错误的包名或者你的 Python 环境没有安装 Pillow 包。Pillow 是 Python Imaging Library 的一个分支,可以在 Python 3.x 中使用。你可以使用以下命令安装 Pillow 包:
```
pip install Pillow
```
如果你已经安装了 Pillow 包,但是仍然遇到这个问题,可能是因为你的 pip 版本比较老,建议升级 pip 版本:
```
pip install --upgrade pip
```
然后再尝试安装 Pillow 包。如果问题仍然存在,请检查你的包名是否写错了,或者你的网络连接是否正常。
阅读全文