conda create environment from yml windows 10 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
Example 3: conda activate env
conda activate myenv