Method 2: Install Micromamba (No Conda Required)
-
1. Download Micromamba
Micromamba is a standalone binary. Download and extract it:
curl -L https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvjO bin/micromamba > ~/.local/bin/micromamba
-
2. Add Micromamba to PATH
Add it to your PATH environment variable:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
bash
-
3. Initialize Micromamba
Then, initialize Micromamba in your current shell session:
eval "$(micromamba shell hook --shell bash)"
To get initizialided on each New Shell:
echo 'eval "$(micromamba shell hook --shell bash)"' >> ~/.bashrc
-
4. Create and Activate Environment
Finally, create a new Python environment and activate it:
micromamba create -n myenv python=3.13 -c conda-forge
micromamba activate myenv
-
5. Mamba Getting-Started Guide
Getting-Started with Mamba on GNU/Linux
Contents