利用清华镜像安装torch
时间: 2023-10-22 12:05:53 浏览: 184
清华镜像源,用于帮助快速下载pytorch
可以按照以下步骤在清华镜像上安装torch:
1. 打开清华镜像网站:https://mirrors.tuna.tsinghua.edu.cn/
2. 在搜索框中输入“torch”,并选择相应的版本和操作系统。
3. 复制对应的安装命令到终端中执行。
例如,在Ubuntu 18.04中安装torch 1.8.0,可以执行以下命令:
```
# 添加清华镜像源
sudo apt-get install -y python3-pip
pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 安装torch
pip3 install torch==1.8.0+cpu -f https://download.pytorch.org/whl/torch_stable.html --user
```
注意:如果需要GPU支持,需要安装相应的CUDA和cuDNN。
阅读全文