python pil库安装
时间: 2023-10-03 19:03:23 浏览: 99
python库安装
你可以使用以下命令在 Python 中安装 Pillow 库(它是 PIL 库的一个分支,支持 Python3):
```
pip install Pillow
```
如果你使用的是 Python 2.x 版本,可以使用以下命令安装 PIL 库:
```
pip install pillow==6.2.2
```
注意:PIL 库在 Python 3.x 版本中已经停止更新,所以建议使用 Pillow 库。
阅读全文