mamba
TLDR
Create environment
$ mamba create -n [myenv] [python=3.10]
Install package$ mamba install [numpy]
Update package$ mamba update [package]
Remove package$ mamba remove [package]
List environments$ mamba env list
Activate environment$ mamba activate [myenv]
SYNOPSIS
mamba command [options]
DESCRIPTION
mamba is a fast conda replacement. It provides faster package resolution and downloading.
The tool is drop-in compatible with conda. Uses parallel downloading and C++ solver.
mamba is fast conda alternative.
PARAMETERS
COMMAND
Operation to perform.create
Create new environment.install
Install packages.update
Update packages.remove
Remove packages.env
Environment management.-n NAME
Environment name.--help
Display help information.
CAVEATS
Conda-compatible. May have edge case differences. Requires conda-forge.
HISTORY
mamba was created by QuantStack to provide faster package management than conda.
SEE ALSO
conda(1), micromamba(1), pip(1)


