Open nguyenvulong opened 3 months ago
conda env update --name your_env_name --file environment.yml --prune
your_env_name will overwrite what's inside environment.yml
your_env_name
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?
conda env create -f environment.yml
your_env_name
will overwrite what's insideenvironment.yml
the script will create new environment if the
your_env_name
does not already existand this makes the
conda env create -f environment.yml
kinda useless, right?