mamba
mamba-org/mamba: The Fast Cross-Platform Package Manager
Mamba is a reimplementation of the conda package manager in C++. parallel downloading of repository data and package files using multi-threading
libsolv for much faster dependency solving, a state of the art library used in the RPM package manager of Red Hat, Fedora and OpenSUSE
core parts of mamba are implemented in C++ for maximum efficiency
At the same time, mamba utilize the same command line parser, package installation and deinstallation code and transaction verification routines as conda to stay as compatible as possible.
another manual
Errors
code:bash
pip install --upgrade --force-reinstall zstandard
pip install --upgrade --force-reinstall zstd
python update
code:bash
mamba intall python=3.??
clone
code:bash
mamba env export -n (old envname) > libraries.yaml
mamba create -n (new envname) -f libraries.yaml
Update environment
code:bash
mamba update --name (env name) (library name) --yes
Use environment
To mamba activate copernicusmarine
code:bash
mamba ativate xxxx
Or to execute a single command in this environment, use:
code:bash
mamba run -n xxx mycommand