Skip to Content

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 (not pelican, which is a different package).

Install Pelican using Conda

  1. First, add the conda-forge channel and set channel priority:

    conda config --add channels conda-forge conda config --remove channels defaults conda config --set channel_priority strict
  2. Install pelicanplatform:

    conda install pelicanplatform

Install Pelican using Mamba

Mamba  is a faster alternative to conda:

  1. Add the conda-forge channel and set channel priority:

    conda config --add channels conda-forge conda config --remove channels defaults conda config --set channel_priority strict
  2. Install pelicanplatform:

    mamba install pelicanplatform

Install Pelican using Pixi

Pixi  is a modern, fast package management tool that provides fully reproducible multi-platform environments:

  1. Initialize a pixi project (if not already initialized):

    pixi init
  2. Add pelicanplatform to your project:

    pixi add pelicanplatform
  3. 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-forge

Or with mamba:

mamba search pelicanplatform --channel conda-forge

Or with Pixi:

pixi search pelicanplatform

Additional Information

For more details about the conda-forge package, including build status and maintainer information, visit the pelicanplatform-feedstock repository .

Next steps