torch1.7对应版本的torchaudio
时间: 2024-05-12 15:12:47 浏览: 75
对于 Torch 1.7,可以使用 torchaudio 0.7.0 版本。你可以通过以下命令安装:
```
pip install torchaudio==0.7.0
```
请注意,如果你的操作系统是 Windows,则需要通过以下命令安装:
```
pip install torchaudio==0.7.0 -f https://download.pytorch.org/whl/cu110/torch_stable.html
```
这是因为 Windows 版本需要特殊处理。
相关问题
torch1.7对应torchvision版本
在PyTorch 1.7版本中,torchvision版本号应该为0.8.1。可以通过以下命令安装:
```
pip install torchvision==0.8.1
```
请注意,要安装与PyTorch版本兼容的torchvision版本,以确保其正常工作。如果您使用的是其他版本的PyTorch,请查看官方文档以了解所需的torchvision版本。
torch1.8对应的torchaudio和torchvision版本
torch1.8 对应的 torchaudio 版本为 0.8.0,torchvision 版本为 0.9.0。可以通过以下命令安装:
安装 torchaudio:
```
pip install torchaudio==0.8.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
安装 torchvision:
```
pip install torchvision==0.9.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
请注意,上述命令适用于 CUDA 11.1 版本,如果您的 CUDA 版本不同,请替换链接中的 "cu111" 为相应的 CUDA 版本。
阅读全文