Conda vs Mamba comparision

From HPCWIKI
Revision as of 08:16, 20 December 2023 by Admin (talk | contribs) (Created page with "{| class="wikitable" |+ !Type !Mamba !Conda !Notes |- |clone env |Export the contents of the existing environment to a YAML file. <code>micromamba env export -n oldenv > oldenv.yaml</code> Create a new environment from the YAML file. <code>micromamba env create -n newenv -f oldenv.yaml</code> |conda create --name CLONE_ENV_NAME --clone ENV_NAME | |- | | | | |- | | | | |} == References == <references />")
(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