关于我在Anaconda安装pytorch时踩的坑

一、配置环境极其缓慢  【解决是用清华源】

https://pytorch.org/get-started/locally/ 上得到安装地址下载很慢

解决:
 

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/
conda config --set show_channel_urls yes
# 添加清华源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

# 填写你需要的版本,其实就是推荐的删除最后的“-c pytorch”,整体速度提升很多
conda install pytorch torchvision torchaudio cudatoolkit=10.2

 

二、Anaconda报NotWritableError错时解决的方法

需要右键管理员运行。

 

参考https://blog.csdn.net/Janny2015/article/details/115036447

你可能感兴趣的:(python)