Install Pelican via Conda-forge
This document explains how to install Pelican using conda-forge, a community-led conda channel that provides the pelicanplatform package.
Prerequisites
You’ll need either conda , mamba , or pixi installed on your system. These package managers work across Linux, macOS, and Windows.
Note: The package on conda-forge is named
pelicanplatform(notpelican, which is a different package).
Install Pelican using Conda
-
First, add the
conda-forgechannel and set channel priority:conda config --add channels conda-forge conda config --remove channels defaults conda config --set channel_priority strict -
Install
pelicanplatform:conda install pelicanplatform
Install Pelican using Mamba
Mamba is a faster alternative to conda:
-
Add the
conda-forgechannel and set channel priority:conda config --add channels conda-forge conda config --remove channels defaults conda config --set channel_priority strict -
Install
pelicanplatform:mamba install pelicanplatform
Install Pelican using Pixi
Pixi is a modern, fast package management tool that provides fully reproducible multi-platform environments:
-
Initialize a pixi project (if not already initialized):
pixi init -
Add
pelicanplatformto your project:pixi add pelicanplatform -
Run Pelican commands in the project environment:
pixi run pelican --version
Available Platforms
The pelicanplatform package is available on conda-forge for the following platforms:
- Linux (x86_64, aarch64, ppc64le)
- macOS (x86_64, arm64)
- Windows (x86_64)
Version Management
To search for available versions:
conda search pelicanplatform --channel conda-forgeOr with mamba:
mamba search pelicanplatform --channel conda-forgeOr with Pixi:
pixi search pelicanplatformAdditional Information
For more details about the conda-forge package, including build status and maintainer information, visit the pelicanplatform-feedstock repository .