由于之前安装anaconda的时候已经安装了cuda(大概),而且cuda和GPU有关,所以这里暂时没提到关于cuda的安装。
这个文档可以解决import torch报错的问题
最基础的方法
pytorch官网:https://pytorch.org/
选择合适的conda或者pip方法,在dos窗口里复制粘贴即可。
(备注一个用清华源的conda下载方式,参考:https://www.cnblogs.com/yufeng97/p/13069247.html)
# 添加清华镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 添加pytorch镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
# for legacy win-64
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/peterjc123/
conda config --set show_channel_urls yes
然后复制之前的conda代码