pip 安装torch使用清华源
时间: 2023-10-20 13:08:36 浏览: 965
Pytorch安装问题:pip3 install torchvision报错解决
5星 · 资源好评率100%
您好!要使用清华源来安装torch,可以按照以下步骤操作:
1. 打开终端或命令提示符窗口。
2. 输入以下命令,将清华源添加为pip的镜像源:
```
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
3. 然后,使用以下命令安装torch:
```
pip install torch
```
这将从清华源下载并安装torch。
希望这可以帮助到您!如有其他问题,请随时提问。
阅读全文