mamba
Fast, drop-in replacement for the conda package manager
TLDR
Create environment
$ mamba create -n [myenv] [python=3.10]
Install packagecopy
$ mamba install [numpy]
Update packagecopy
$ mamba update [package]
Remove packagecopy
$ mamba remove [package]
Search for a packagecopy
$ mamba search [numpy]
List environmentscopy
$ mamba env list
Activate environmentcopy
$ mamba activate [myenv]
Clean package cachescopy
$ mamba clean --all
copy
SYNOPSIS
mamba command [options]
DESCRIPTION
mamba is a fast, drop-in replacement for conda. It provides faster package resolution using the libsolv dependency solver (written in C++) and parallel downloading of packages.The tool is fully compatible with conda commands, packages, and environments. It can be used wherever conda is used and supports the same command-line interface.
PARAMETERS
COMMAND
Operation to perform.create
Create new environment.install
Install packages.update
Update packages.remove
Remove packages.search
Search for packages in configured channels.list
List packages in active environment.clean
Remove cached package files and unused caches.env
Environment management.repoquery
Query package dependencies and reverse dependencies.-n NAME
Environment name.-c CHANNEL
Additional channel to search for packages.-y, --yes
Do not ask for confirmation.--dry-run
Only display what would have been done.--no-banner
Suppress the mamba banner.--help
Display help information.
CAVEATS
Conda-compatible but may have minor edge case differences in dependency resolution. Requires an existing conda installation (mamba runs as a conda plugin). For a standalone alternative, see micromamba.
HISTORY
mamba was created by QuantStack to provide faster package management than conda.
SEE ALSO
conda(1), micromamba(1), pip(1)