Anaconda or Miniconda
Refer here to compare and decide which variant to install.
Useful commands
Refer to Conda Cheat Sheet for useful commands.
# Get list of environments
conda env list
# Creating an Environment with Specific Python Version and/or Packages:
conda create -n myenv python=3.9 numpy pandas
# Activating the environment
conda activate myenv
# Deactivating the environment
conda deactivate
# To disable auto activation of conda at terminal start
conda config --set auto_activate_base false