conda recreate env yml code example
Example 1: how to see all the environments in Conda
conda env list
Example 2: conda install from yaml
conda env update -n my_env --file ENV.yaml
conda env list
conda env update -n my_env --file ENV.yaml