怎么使用清华源pip安装torch1.7.1 和torchvision 0.8.1
时间: 2023-09-05 19:13:17 浏览: 196
1. 首先安装清华源
使用以下命令添加清华源:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
```
2. 安装torch1.7.1
使用以下命令安装torch1.7.1:
```
pip install torch==1.7.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
```
3. 安装torchvision 0.8.1
使用以下命令安装torchvision 0.8.1:
```
pip install torchvision==0.8.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
```
相关问题
怎么使用豆瓣源pip安装torch1.7.1 和torchvision 0.8.1
可以按照以下步骤使用豆瓣源pip安装torch1.7.1和torchvision 0.8.1:
1. 首先,打开终端或命令提示符。
2. 使用以下命令添加豆瓣源:
```
pip config set global.index-url https://pypi.doubanio.com/simple/
```
3. 然后,安装torch1.7.1:
```
pip install torch==1.7.1
```
4. 最后,安装torchvision 0.8.1:
```
pip install torchvision==0.8.1
```
安装完成后,你就可以在Python代码中使用torch和torchvision了。
怎么用pip安装torch1.7.1 和torchvision 0.8.1
在命令行中输入以下命令即可安装torch1.7.1和torchvision 0.8.1:
```
pip install torch==1.7.1 torchvision==0.8.1 -f https://download.pytorch.org/whl/cu101/torch_stable.html
```
其中,`-f`选项指定了PyTorch的whl文件下载地址,`cu101`指的是CUDA 10.1,如果你使用的是其他版本的CUDA,可以替换为对应的版本号,或者去官网查看最新版本的下载地址。
阅读全文