bash activate conda environment code example
Example: how to activate conda environment on linux terminal
conda create --name #this creates the environment
conda activate #this activates the environment
#if conda activate does not work then try the following
source ~/anaconda3/etc/profile.d/conda.sh
conda activate