how to see the list of environments created conda code example
Example 1: how to make a conda environment
conda create --name myenv
#to activate environment:
conda activate myenv
Example 2: conda install from yaml
conda env update -n my_env --file ENV.yaml