conda update yml file code example
Example 1: conda update environment from yml
$ conda activate earth-analytics-python
$ conda env update -f environment.yml
Example 2: conda create environment from file
conda env create -f environment.yml
Example 3: conda install from yaml
conda env update -n my_env --file ENV.yaml