Centos 7下安装Anaconda3

首先安装 bzip2 库,不然安装过程会报错 bunzip2: command not found

sudo yum install -y bzip2

然后去Anaconda 的 清华镜像源 找到你想要的版本,然后拷贝下载地址

例如我要的是 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.0.1-Linux-x86_64.sh

然后去linux 下执行命令下载

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

下载完成后,执行

sh Anaconda3-5.0.1-Linux-x86_64.sh

后面一直选yes就行了,最后执行

source ~/.bashrc

刷新下环境变量,否则无法立刻使用 ,需要重启

 

你可能感兴趣的:(机器学习,linux)