赞
踩
pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
这是pytorch官网的安装命令,通常在安装torch、torchvision和torchaudio时速度尚可,但在安装依赖包时可能显示网络超时。
这时我们如果借用国内的镜像站,例如清华镜像站:
pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -i https://pypi.tuna.tsinghua.edu.cn/simple
很有可能找不到对应的torch版本,但是清华镜像站在下载依赖包时速度快。
这时我们可以使用以下命令:
pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -i https://pypi.tuna.tsinghua.edu.cn/simple -f https://download.pytorch.org/whl/torch_stable.html
以下是命令执行结果(-f和-i的先后顺序不影响):
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。