Installation

Installation#

Stable version#

The latest stable release of SBMLtoODEjax can be installed via pip:

pip install sbmltoodejax

Development version#

Warning

This version is possibly unstable and may contain bugs. You can install the latest development version of SBMLtoODEjax from source via running the following:

git clone https://github.com/flowersteam/sbmltoodejax.git
cd sbmltoodejax
pip install -e .

Tip

It is recommended to create a conda virtual environment before installing:

conda create -n sbmltoodejax python=3.9
conda activate sbmltoodejax

We also recommend to run the unit tests to you check your installation:

pytest tests/*