Installation#

This guide explains you how to install healpix-geo on your system.

Prerequisites#

  • Python : Version >= 3.10

  • NumPy : Automatically install with healpix-geo

Via conda#

conda install -c conda-forge healpix-geo
mamba install -c conda-forge healpix-geo
pixi add healpix-geo

Via pip#

pip install healpix-geo
uv add healpix-geo

Note

Pre-compiled wheels are available for the following platforms :

  • Linux : x86_64, aarch64

  • macOS : x86_64 (Intel), arm64 (Apple Silicon)

  • Windows : x86_64

Installation from sources#

Prerequisite#

Steps#

  1. Clone the depository :

git clone https://github.com/EOPF-DGGS/healpix-geo.git
cd healpix-geo
  1. Build wheels :

Option 1 - build wheels for all supported python versions :

pixi run build-all-wheels

Option 2 - build wheel for python=3.13 :

pixi run -e py313 build-wheel
  1. Install the appropriate wheel :

pip install ./target/wheels/healpix-geo-<version>-cp313-cp313-<platform>.whl

Uninstallation#

To uninstall healpix-geo :

pip uninstall healpix-geo
# or
conda remove healpix-geo