A repository used to showcase how one can solve differential equations using Python.
- This project relies on
python=3.10
. It was not tested with different versions. To view the entire list of required packages, seeenvironment.yml
. - Clone the repository to your local machine.
- Once you have
cd
into this repo, create a virtual environment (assuming you haveconda
installed) via
conda env create -f environment.yml
- Enter the virtual environment with
conda activate solve-ode-env
- Install the
libraries
package in the repo root directory usingpip install -e .
(you only need the-e
option if you intend to edit the source code inlibraries/
).