清华镜像源安装pytorch
时间: 2023-09-12 08:10:01 浏览: 128
pytorch清华源下载.zip
你可以按照以下步骤在清华镜像源上安装pytorch:
1. 打开pytorch官网:https://pytorch.org/
2. 选择需要安装的pytorch版本、操作系统和安装方式,然后复制安装命令。
3. 打开终端,进入清华镜像源官网:https://mirrors.tuna.tsinghua.edu.cn/
4. 点击“使用帮助”,选择“清华源使用帮助”,根据操作系统选择对应的命令,并复制到终端中执行。
5. 执行安装命令,等待安装完成即可。
例如,如果你需要安装pytorch 1.9.0版本,操作系统为Ubuntu 20.04,安装方式为conda,则可以执行以下命令:
```
conda install pytorch==1.9.0 torchvision torchaudio -c pytorch -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
```
注意,在安装命令中,需要添加清华镜像源的地址:-c https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/。
阅读全文