Centos7安装anaconda3

Centos7安装anaconda3

1、 安装bunzip2

yum install bunzip2

2、 下载anaconda3

wget https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh

3、 安装anaconda3

bash  Anaconda3-5.2.0-Linux-86_64.sh   #你刚才下载的包名

刚开始会需要按下回车,确认安装,第二次需要输入yes ,表示你同意安装条款,第三次输入你的安装路径,默认是自动在当前目录下创建anaconda3文件夹,并安装在该文件夹里,最后需要输入yes ,表示同意添加环境变量。

4、 测试

输入Python,即可看到已经是Python3了。

原文地址:https://www.cnblogs.com/xshan/p/9392235.html