在阿里云Linux服务器上安装Anaconda

1.先下载安装工具wget

CentOS:

yum install wget -y

Debian/Ubuntu:

apt-get install -y wget

2.开始安装

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

url来自anaconda的官方网站https://www.anaconda.com/products/individual
,你直接用我的吧。

在这里插入图片描述
等待下载完成:
在这里插入图片描述
完成之后输入

ls

检查一下当前目录是否有该文件:
在这里插入图片描述
有Anaconda3-5.3.0-Linux-x86_64.sh这个就够了
其他几个是我以前下的别管。

为这个文件添加可执行权限:

chmod u+x Anaconda3-2020.11-Linux-x86_64.sh

然后执行:

./Anaconda3-2020.11-Linux-x86_64.sh

然后阅读许可证:
在这里插入图片描述
可以一直按“enter”阅读,也可以直接输入“q”退出。

然后输入“yes”,接受许可证:
在这里插入图片描述
此刻按一下enter,切勿按多。

在这里插入图片描述

等待安装······

安装好了问你是否添加Anaconda的环境变量,为了以后方便使用,这里输入“yes”。
在这里插入图片描述

安装成功!
在这里插入图片描述

输入指令检查版本

conda -V

在这里插入图片描述
嗯,安装成功了。

猜你喜欢

转载自blog.csdn.net/Dai_sir_man/article/details/123771281