Ubuntu安装anaconda和pytorch的几个总结

Ubuntu安装anaconda和pytorch的几个总结

1. conda的几个镜像

清华镜像

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

南大镜像

conda config --add channels http://mirrors.nju.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.nju.edu.cn/anaconda/cloud/conda-forge
conda config --add channels http://mirrors.nju.edu.cn/anaconda/cloud/msys2

2. 删除.condarc中的defaults

这里用conda config --show可以查看相应的安装源信息,但是有个时候却找不到相应的.condarc文件,参考安装anaconda及修改conda config 的channels/default_channels中的方法可以修改defaults

3. conda install fails - HTTP 000 CONNECTION FAILED

出现这个bug,一般是安装源那里除了问题,pytorch是个国外的网站,你懂的
如果是用下面的命令来安装

conda install pytorch torchvision cudatoolkit=9.0 -c pytorch

那么恭喜你,如果你不开代理的话,十有八九会出现connection failed,解决办法很简单,把后面的

-c pytorch

给删了
可以参考pytorch安装问题
google了一下,有大佬升级了anaconda-navigator来解决这个问题,我试过,没成功,反而degrade了一些packages,有点麻烦,此时

conda clean -a

删掉没用的安装包,重新conda install吧,少年~

引用:

  1. 安装anaconda及修改conda config 的channels/default_channels
  2. pytorch安装问题
  3. https://github.com/pytorch/pytorch/issues/4207

你可能感兴趣的:(机器学习萌新)