Installation

PyPI and pip

To install multispaeti from PyPI using pip just run

pip install multispaeti

GPU support

In most cases support for GPU computations (using CuPy) can be installed via

# for CUDA12
pip install multispaeti[cuda12]

# or for CUDA11
pip install multispaeti[cuda11]

However, in cases where this doesn’t work we recommended referring to the CuPy documentation.

conda-forge and conda

multispaeti can also be installed from conda-forge via

conda install conda-forge::multispaeti

Note

Of course, it is also possible to use mamba instead of conda to speed up the installation.

GPU support

For support of GPU computations please refer to the CuPy documentation.

From GitHub

You can install the latest versions directly from GitHub. To do so clone the repository using the git clone command. Navigate into the downloaded directory and install using

pip install -e .

If you want to install the development version you can install the additional optional dependencies with

pip install -e '.[dev]'