1、下载
我用的是centos,直接命令
我下载的是Python2的版本,其他版本可去清华源找(https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/)
wget https://repo.continuum.io/archive/Anaconda2-5.3.0-Linux-x86_64.sh
2、安装
sh Anaconda2-5.3.0-Linux-x86_64.sh
可能报错
Anaconda2-5.3.0-Linux-x86_64.sh: line 353: bunzip2: command not found
由于系统缺少bunzip2包造成的,通过yum安装bzip2包来解决
yum install bzip2
设置环境变量(可选)
echo ‘export PATH="~/anaconda2/bin:$PATH"’ >> ~/.bashrc
source .bashrc