Installation#

Packages#

conda#

kessler is available on [Anaconda](https://anaconda.org/conda-forge/kessler). To install it via conda, we add conda-forge channel to the channels:

$ conda config --add channels conda-forge
$ conda config --set channel_priority strict

Now, we can install kessler either through conda:

$ conda install kessler

or mamba:

$ mamba install kessler

pip#

kessler is available on [Pypi](https://pypi.org/project/kessler/). You can install it via pip as:

$ pip install kessler

Installation from source#

Using git:

$ git clone https://github.com/kesslerlib/kessler

We follow the usual PR-based development workflow, thus kessler’s master branch is normally kept in a working state.

Verifying the installation#

You can verify that kessler was successfully compiled and installed by running the tests. To do so, you must first install the optional dependencies.

$ pytest

If this command executes without any error, then your kessler installation is ready for use.

Getting help#

If you run into troubles installing kessler, please do not hesitate to contact us by opening an issue report on github.