You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to my observation, micromamba update -f env.yaml doesn't install anything from the YAML file. Instead, it only updates all the existing packages.
We'd better use conda update because it requires mounts, which means it cannot be cached.
Description
Currently, we cannot replace
miniconda
withmicromamba
because:micromamba create -n envd python=3.7 --file env.yaml
v.s.conda env create -n envd python=3.7 --file env.yaml
micromamba update -n envd --file env.yaml
v.s.conda env update -n envd --file env.yaml
micromamba update --file env.yaml
won't install new packages from the YAML fileAdditional Info
Message from the maintainers:
Impacted by this bug? Give it a 👍. We prioritise the issues with the most 👍.
The text was updated successfully, but these errors were encountered: