Installation#

Python Package Index (PYPI)#

You can install the package from PYPI using pip:

$ pip install pyseldonlib

From Source#

Create and Activate the Environment#

Create a new micromamba environment and activate it:

$ micromamba create -f environment.yml

$ micromamba activate pyseldonenv

If you get problem with micromamba can look at the installation documentation here

Build#

Set up the build directory with meson:

$ meson setup build

Install Python package#

Use pip to install the package:

$ pip install .

Run the tests#

Use pytest to run the tests:

$ pytest tests

or

$ python -s pytest tests