前期装了太多镜像源,导致后期装软件包一直装不上去
想把国内镜像源删除,你可以这样做。先查看channels里是否有清华镜像
conda config --get channels
如果有,把它移除
conda config --remove-key channels
conda config --append channels conda-forge --append channels bioconda --append channels defaults
查看自己曾经创建的虚拟环境
conda info --envs
基于python3.7的pytorch虚拟环境安装
安装步骤和TensorFlow相似,在cmd依次输入下面的指令,这里选择的是清华镜像
conda create -n python38 pip python=3.8
安装好python38后激活
conda activate python38
安装清华镜像源
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
# reference
# https://mirror.tuna.tsinghua.edu.cn/help/anaconda/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
最后还是卸掉清华镜像源,改装中科大镜像源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda install pytorch torchvision cudatoolkit=10.0
作者:风中逍锋
链接:https://www.jianshu.com/p/33a78fdc5bf5
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。