因为最近使用到python的numpy,pandas等包,为了方便使用,就安装了anaconda2,本人的系统是centos6.5 64位的python版本是python2.7.15的,一下是安装步骤:
首先可以到Anaconde的官网下载安装包:
https://www.anaconda.com/download/#linux
选择自己系统版本,下载即可;
或者到国内的镜像下载:
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive
也可以这样
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda2-5.2.0-Linux-x86_64.sh
找到Anaconda2-5.2.0-Linux-x86_64.sh移到,然后./Anaconda2-5.2.0-Linux-x86_64.sh
接着会出现对话,一直按Enter(回车即可),根据提示输入yes 同意license agreement,按回车,使用默认的路径,等待安装完成
或者可以在~/.bashrc里,添加export PATH=/root/anaconda2/bin:$PATH,最后source ~/.bashrc,如果不行可以重启linux
测试anaconda2是否成功安装,输入python
这个就说明成功了!