Skip to content

Installation

Install using PyPI

prismatools is available on PyPI. To install prismatools, run this command in your terminal:

1
pip install prismatools

This is the preferred method to install prismatools, as it will always install the most recent stable release.

If you don't have pip installed, this Python installation guide can guide you through the process.

Install from conda-forge

prismatools is also available on conda-forge. If you have Anaconda or Miniconda installed on your computer, you can install prismatools using the following command:

1
conda install -c conda-forge prismatools

Alternatively, you can create a new conda environment and install prismatools in the new environment. This is a good practice because it avoids potential conflicts with other packages installed in your base environment.

1
2
3
4
conda install -n base mamba -c conda-forge
conda create -n prisma python=3.11
conda activate prisma
mamba install -c conda-forge prismatools

Install from GitHub

To install the development version from GitHub using Git, run the following command in your terminal:

1
pip install git+https://github.com/gthlor/prismatools