查看Pillow版本
时间: 2024-08-13 20:01:25 浏览: 280
python3.6 安装 torch 和 torchvision 对应可用的Pillow版本
在Python中,如果你想要查看Pillow库(也称为 PIL,图像处理库)的版本,你可以使用`import`语句导入模块后,调用`PIL.__version__`或`Image`模块的`__version__`属性。例如:
```python
from PIL import Image
print(Image.__version__)
```
这会打印出当前安装的Pillow库的版本号。如果你还没有安装Pillow,可以使用`pip install pillow`命令来安装。
阅读全文