Conda ecosystem
Conda is a language-agnostic, cross-platform package management ecosystem. conda-forge is a community-led infrastructure for building and distributing packages. These projects provide convenient ways to install and use packages across different platforms.
Pixi¶
Pixi is a modern package management tool for developers based on the Conda ecosystem. To install Pixi, follow one of these methods:
powershell -ExecutionPolicy ByPass -c "irm -useb https://pixi.sh/install.ps1 | iex"Download and execute the official installer.
curl -fsSL https://pixi.sh/install.sh | shOnce the installation is complete, open a new terminal and verify that the pixi command
is available:
pixi --versionThe conda and mamba programs¶
One can use Pixi to globally install the command-line applications conda and mamba:
pixi global install -e env-conda conda mamba
conda init --all
conda config --set auto_activate falseYou should then be able to run:
conda --version
mamba --versionAn issue with this installation method?
One can also install conda and mamba with Miniforge, which is a modified version of
Miniconda that uses the
community-driven conda-forge channel by default (we will discuss these projects in more
detail during the training; see Conda & the conda-forge project). Install
Miniforge by following the
instructions presented on this page
(open this link in a new tab).