查看PyTorch版本
时间: 2023-08-25 09:04:59 浏览: 581
MSRN-PyTorch:该存储库是论文“用于图像超分辨率的多尺度残差网络”(ECCV 2018)的PyTorch版本。
使用以下命令查看pytorch版本:
```
pip show torch
```
或
```
conda list torch
```
如果你没有安装pytorch,可以使用下面的命令安装
```
pip install torch
```
或
```
conda install pytorch torchvision -c pytorch
```
阅读全文