PyTorch 1.7的安装代码是什么
时间: 2024-05-14 07:15:40 浏览: 125
RecNN:围绕pytorch 1.7构建的增强推荐工具包
安装PyTorch 1.7的代码如下:
```
pip install torch torchvision
```
或者,如果要安装特定版本的PyTorch(例如PyTorch 1.7.0),可以使用以下命令:
```
pip install torch==1.7.0 torchvision==0.8.0
```
阅读全文