Micromamba Mamba
winget install --id=Mamba.Micromamba -e
The Fast Cross-Platform Package Manager
Micromamba is a fast cross-platform package manager designed to efficiently manage conda packages and virtual environments. It provides a lightweight yet powerful solution for developers and data scientists to streamline their workflow.
Key Features:
- High-speed package installation and environment creation
- Cross-platform compatibility (Linux, macOS, Windows)
- Single-file executable for easy deployment
- Integration with conda Forge packages
- Simplified shell initialization for virtual environment management
Ideal for developers, data scientists, and IT professionals who require quick access to packages and environments across different operating systems. Micromamba can be installed via winget or by running a simple script for your platform.
README
micromamba - grab your release here!
This repository is used to distribute release builds of micromamba
, the fast package manager for conda packages!
micromamba is a single-file executable that is statically linked and can be dropped anywhere on the operating to get started with powerful package management and virtual environments.
To install, copy and paste the commands from the following sections.
The pfx.dev
URLs are just shorthands for the URLs to the raw files on Github from this repository.
Linux / macOS / Windows (git bash)
On Linux and macOS, this script downloads the micromamba release file and places it in ~/.local/bin
. The script then asks you if you want to perform "shell initialization". If yes, shell initialization will add a block to your ~/.bashrc
or .zshrc
file. You can choose to do that later by executing micromamba shell init
. Shell initialization is necessary to properly activate and deactivate virtual environments, however you can use micromamba without and use micromamba run -n myenv
or micromamba shell -n myenv
functions to run in or drop into virtual environments.
"${SHELL}" <(curl -L https://micro.mamba.pm/install.sh)
Windows
On Windows, the executable micromamba.exe
is installed into $Env:LocalAppData\micromamba\micromamba.exe
.
With Powershell:
Invoke-Expression ((Invoke-WebRequest -Uri https://micro.mamba.pm/install.ps1).Content)