How to Install micromamba on linux (from the comamnd line only)
I really like using conda (miniconda) as my python virtual environment [1]
manager of choice. It’s simple and it includes its own python interpreter
using the version that I specify at creation.
Mamba # [2]
from their readme [3]
---
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.
---
Installing Micromamba # [4]
Similar to miniconda micromamba can be installed with a few lines of bash
wget -qO- https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar -xvj bin/micromamba
./bin/...