Install Anaconda on Alibaba Cloud Linux Server

1. First download the installation tool wget

CentOS:

yum install wget -y

Debian/Ubuntu:

apt-get install -y wget

2. Start the installation

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

The url comes from the official website of anaconda https://www.anaconda.com/products/individual
, you can use mine directly.

insert image description here
Wait for the download to complete:
insert image description here
enter after completion

ls

Check if there is this file in the current directory:
insert image description here
Anaconda3-5.3.0-Linux-x86_64.sh is enough, and the
others are the ones I downloaded before.

Add executable permission to this file:

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

Then execute:

./Anaconda3-2020.11-Linux-x86_64.sh

Then read the license:
insert image description here
you can keep pressing "enter" to read, or just type "q" to exit.

Then type "yes" to accept the license:
insert image description here
press enter now, not more.

insert image description here

Waiting to install.....

After the installation is complete, you are asked whether to add the environment variable of Anaconda. For the convenience of future use, enter "yes" here.
insert image description here

Successful installation!
insert image description here

Enter the command to check the version

conda -V

insert image description here
Well, the installation was successful.

Guess you like

Origin blog.csdn.net/Dai_sir_man/article/details/123771281