清华:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set` `show_channel_urls yes

中科大:

conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/ 
conda config --set` `show_channel_urls yes

注意要删除 .condarc文件 ,默认在C盘\users\username\的位置。或者把里面最后一行的–default删掉。

换回默认源:

conda config --remove-key channels

添加conda环境变量

在终端输入:

sudo vim ~/.bashrc

在配置文件中添加

export PATH=~/anaconda3/bin:$PATH

立即生效,输入:

source ~/.bashrc