步骤
打开网址:Anaconda清华镜像,复制要下载的文件地址,执行以下命令:1
2
3
4
5
6
7
8
9
10
11
12wget 复制的网址(会下载一个sh文件)
sh sh文件名
#执行后,会显示使用条款,按enter继续阅读,会让回答几个问题,全部yes
rm -rf sh文件名
source ~/.bashrc (使conda生效)
#设置清华conda镜像
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
注意事项
Anaconda3-5.2.0.Linux-x86_64.sh
==>python3.6
Anaconda3-5.3.1.Linux-x86_64.sh
==>python3.7
若wget显示网络不可达,执行以下操作:
1
2
3
4
5
6#centos
sudo yum -y install wget
#ubuntu
sudo apt-get update
sudo apt-get install wget若不能运行
jupyter notebook
,进行如下配置:jupyter notebook配置