micromamba
all
A fast, minimal, standalone package and environment manager for `conda` packages. Drop-in replacement for `conda`, ideal for CI, Docker, and lightweight setups.
More info →Options (2)
-p, --prefixbooleanCreate a new environment at a specific path, installing named packages into it
Example:
micromamba create {{[-p|--prefix]}} /{{path/to/env}} {{python=3.11 numpy}}-t, --treebooleanQuery tree-like dependencies of a package
Example:
micromamba repoquery depends {{[-t|--tree]}} {{package_name}}Examples (8)
Create a new environment at a specific path, installing named packages into it
micromamba create [-p|--prefix] /path/to/env python=3.11 numpyActivate an environment by name or path
micromamba activate [-p|--prefix] /path/to/envRun a command inside an environment without activating it in the shell
micromamba run [-p|--prefix] /path/to/env pytest tests/Install packages into the currently active environment
micromamba install scipy pandasList all installed packages in the current environment
micromamba listSearch for packages in channels or current environment
micromamba search package_nameQuery tree-like dependencies of a package
micromamba repoquery depends [-t|--tree] package_nameShow information about the current `micromamba` setup
made by @shridhargupta | data from tldr-pages