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 utilizes the same command line parser, package installation and deinstallation code and transaction verification routines as conda to stay as compatible as possible.
mamba is part of the conda-forge ecosystem, which also consists of quetz, an open source conda package server.
mamba and micromamba normalize MatchSpec strings to the simplest form, whereas conda use a more verbose form
This can lead to slight differences in the output of conda env export and mamba env export.
Only mamba and micromamba 2.0 and later are supported and are actively developed.
The 1.x branch is only maintained for addressing security issues such as CVEs.
For questions, you can also join us on the QuantStack Chat
or on the Conda channel (note that this project is not officially affiliated with conda or Anaconda Inc.).
License
We use a shared copyright model that enables all contributors to maintain the copyright on their contributions.
This software is licensed under the BSD-3-Clause license. See the LICENSE file for details.
Biweekly Dev Meeting
We have videoconference meetings every two weeks where we discuss what we have been working on and get feedback from one another.
Anyone is welcome to attend, if they would like to discuss a topic or just listen in.
Mamba: The Fast Cross-Platform Package Manager
mamba
mamba
is a reimplementation of the conda package manager in C++.mamba
are implemented in C++ for maximum efficiencyAt the same time,
mamba
utilizes the same command line parser, package installation and deinstallation code and transaction verification routines asconda
to stay as compatible as possible.mamba
is part of the conda-forge ecosystem, which also consists ofquetz
, an open sourceconda
package server.You can read our announcement blog post.
micromamba
micromamba
is the statically linked version ofmamba
.It can be installed as a standalone executable without any dependencies, making it a perfect fit for CI/CD pipelines and containerized environments.
See the documentation on
micromamba
for details.mamba
v.s.micromamba
mamba
has to be preferred when:libmambapy
orlibmamba
is used by other software in the same environment.micromamba
has to be preferred when:Installation
Please refer to the mamba and micromamba installation guide in the documentation.
Additional features in Mamba and Micromamba
mamba
andmicromamba
come with features on top of stockconda
.repoquery
To efficiently query repositories and query package dependencies you can use
mamba repoquery
ormicromamba repoquery
.See the repoquery documentation for details.
Installing lock files
micromamba
can be used to install lock files generated by conda-lock without having to installconda-lock
.Simply invoke
micromamba create
with the-f
option, providing an environment lockfile whose name ends with-lock.yml
or-lock.yaml
; for instance:setup-micromamba (setup-miniconda replacement)
setup-micromamba is a replacement for setup-miniconda that uses
micromamba
.It can significantly reduce your CI setup time by:
micromamba
, which takes around 1 s to install.conda
environments.Differences with
conda
While
mamba
andmicromamba
are generally a drop-in replacement forconda
there are some differences:mamba
andmicromamba
do no support revisions (for discussions, see https://github.com/mamba-org/mamba/issues/803)mamba
andmicromamba
normalizeMatchSpec
strings to the simplest form, whereasconda
use a more verbose form This can lead to slight differences in the output ofconda env export
andmamba env export
.Development installation
Please refer to the instructions given by the official documentation.
Support us
Only
mamba
andmicromamba
2.0 and later are supported and are actively developed.The
1.x
branch is only maintained for addressing security issues such as CVEs.For questions, you can also join us on the QuantStack Chat or on the Conda channel (note that this project is not officially affiliated with
conda
or Anaconda Inc.).License
We use a shared copyright model that enables all contributors to maintain the copyright on their contributions.
This software is licensed under the BSD-3-Clause license. See the LICENSE file for details.
Biweekly Dev Meeting
We have videoconference meetings every two weeks where we discuss what we have been working on and get feedback from one another.
Anyone is welcome to attend, if they would like to discuss a topic or just listen in.