Conda vs Mamba comparison

From HPCWIKI
Revision as of 15:38, 14 July 2026 by Clara (talk | contribs) (Phase 1.4 FIX: Restore original content from revision history)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Type Mamba Conda Notes
clone env Export the contents of the existing environment to a YAML file.

micromamba env export -n oldenv > oldenv.yaml

Create a new environment from the YAML file.

micromamba env create -n newenv -f oldenv.yaml

conda create --name CLONE_ENV_NAME --clone ENV_NAME

References