一、获取Linux版的Anaconda安装包
1.官网点击打开链接
https://www.anaconda.com/download/
2.Anaconda开源镜像
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
二、安装Anaconda
1.运行安装
su root
sh Anaconda3-5.1.0-Linux-x86_64.sh

2.接受License,配置安装路径
#安装路径
/usr/anaconda3
3.配置环境变量
gedit ~/.bashrc
#Anaconda3
export PATH=/usr/anaconda3/bin:$PATH
source ~/.bashrc
