create conda env from yaml code example
Example 1: conda create env from yml
conda env create -f environment.yml
Example 2: conda list environments
conda info --envs
Example 3: conda install from yaml
conda env update -n my_env --file ENV.yaml