Install Anaconda
- Download the file from https://www.anaconda.com/products/distribution and install it
- Create Virtual Environment by executing this command in the terminal:
conda create -n env anaconda
. This will create a viirtual environment (venv) namedenv
and install all the basic packages in that environment.
install:
wget https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh
bash Anaconda3-2022.10-Linux-x86_64.sh
source ~/.bashrc
conda create -n env python=3.9.13 anaconda
conda activate env