使用国内源来安装pytorch速度很快

一、找到合适的安装方式

pytorch官网:https://pytorch.org/

二、安装命令

# 豆瓣源
pip install torch torchvision torchaudio -i  https://pypi.douban.com/simple

#  其它源
pip install torch torchvision torchaudio -i  https://pypi.mirrors.ustc.edu.cn/simple

后面的是镜像,当然也可以采用其他源

原文地址:https://www.cnblogs.com/zhaoyingjie/p/14256510.html