Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1.11 KB

README.rst

File metadata and controls

45 lines (26 loc) · 1.11 KB

ODE Solvers in Python

Travis status Codecov status MIT license

This repository contains simple Python implementations of some numerical solvers for ODEs.


HOW TO USE THE PACKAGE

The package is currently not distributed anywhere.

You can clone the repository and do the following:

  1. Create virtual environment:
$ cd <project-home>
$ python3 -m venv .env
  1. Activate virtual environment
$ source .env/bin/activate
  1. Install package for testing in the virtual environment
$ python3 setup.py develop
  1. Import the package and use it!