Download the installer:
Miniconda installer for Linux. ( https://docs.conda.io/en/latest/miniconda.html#linux-installers )
Anaconda installer for Linux. ( https://www.anaconda.com/products/individual )
$ chmod 777 Anaconda3-2020.11-Linux-x86_64.sh
$ ./Anaconda3-2020.11-Linux-x86_64.sh
#Follow the yes/no flags and finish till the end
#Check the installation
$ conda -V
A few other frequently used commands
# list all the conda environment available
conda info --envs
# Create new environment named as `envname`
conda create --name envname
# Remove environment and its dependencies
conda remove --name envname --all
# Clone an existing environment
conda create --name clone_envname --clone envname