nguyenvulong / QA

The Unlicense
0 stars 0 forks source link

[conda] update environment with yml file #83

Open nguyenvulong opened 3 months ago

nguyenvulong commented 3 months ago
conda env update --name your_env_name --file environment.yml --prune

your_env_name will overwrite what's inside environment.yml

the script will create new environment if the your_env_name does not already exist

and this makes the conda env create -f environment.yml kinda useless, right?