[1] Connect to Anaconda Download Page
Anaconda download link :
https://www.anaconda.com/download
You can skip typing your email address by clicking ‘Skip registration’
Please download Installers according to your environments. (Windows, Mac, Linux)
[2] Install Anaconda
Go to Anaconda installer folder and open terminal
$ cd ~/Downloads
$ bash Anaconda3-2024.02-1-Linux-x86_64.sh
You can skip long ‘ENTER’ session by just typing ‘ctrl + c’. And then type ‘yes’ for checking License question.
Type ‘ENTER’ for confirming to use prefixed installed location.
[3] Check Anaconda Installation
By typing the following command, you can check the current version of Anaconda.
$ conda -V
>> conda 24.1.2
[4] Use Anaconda
If you don’t want to use Anaconda prompt every time when you open the terminal, type following command.
$ conda config --set auto_activate_base False
If you want to use Anaconda prompt by manually,
$ conda activate
If you don’t want to use Anaconda prompt by manually,
$ conda deactivate