首页 > 技术文章 > centos7下安装Anaconda3

kingleoric 2017-09-22 23:42 原文

下载anaconda3:

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-4.2.0-Linux-x86_64.sh

查看MD5:

[root@iZbp1j17ifxfecekzxs2lyZ Anaconda3]# md5sum Anaconda3-4.2.0-Linux-x86_64.sh
4692f716c82deb9fa6b59d78f9f6e85c  Anaconda3-4.2.0-Linux-x86_64.sh

运行:

bash Anaconda3-4.2.0-Linux-x86_64.sh

一路回车和yes:

配置anaconda环境变量生效:

[root@iZbp1j17ifxfecekzxs2lyZ Anaconda3]# source /root/.bashrc

我们这里使用清华的 Anaconda 仓库镜像,运行以下命令:

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

 

推荐阅读