Installation#

PyPARRM is available on PyPI, and conda-forge for version ≥ 1.1.1.

PyPARRM requires Python ≥ 3.10.

To install PyPARRM, activate the desired environment or project in which you want the package, then install it using pip:

pip install pyparrm

uv:

uv pip install pyparrm

conda:

conda install -c conda-forge pyparrm

or pixi:

pixi add pyparrm

If you need to create an environment or project in which to install PyPARRM, you can do so using venv, uv, pixi, or conda.

With venv#

In a shell with Python available, navigate to your project location and create the environment:

python -m venv pyparrm_env

Activate the environment using the appropriate venv command for your operating system and shell, then install the package:

pip install pyparrm

With uv#

In a shell with uv available, navigate to your project location and create the environment:

uv venv pyparrm_env

Activate the environment using the appropriate uv command for your operating system and shell, then install the package:

uv pip install pyparrm

With pixi#

In a shell with pixi available, run the following commands:

pixi init
pixi shell-hook
pixi add pyparrm

With conda#

In a shell with conda available, run the following commands:

conda create -n pyparrm_env
conda activate pyparrm_env
conda install -c conda-forge pyparrm