It seems micromamba is missing a clone environment option, or is it just named differently?
micromamba create -n envname --help
does not seem to show any clone-like option andconda create -n envname --clone oldenv
doesn't seem to work.If mamba is missing clone option, what is the reason for that?
Thanks!
Yeah, It does not have a cloning option yet
the command to create the environment failed with micromamba version 1.4.9
, use the --file
flag,
micromamba env create --name newenv --file oldenv.yaml
It's simply because it is designed as a lightweight, fast, and minimal version of mamba
. The clone environment is a relatively complex feature, and it was not considered to be essential for the core functionality of micromamba
.
There is a roundabout way although. As per I know, you can export the current env as yaml
and run micromamba env create
to create a env from the yaml file.
micromamba env export -n oldenv > oldenv.yaml
micromamba env create -n newenv -f oldenv.yaml
This should work, notify if it doesn't.