Installation¶
You can download the source code at https://github.com/CAOR-MINES-ParisTech/ukfm.
Python¶
The Python package has been tested under Python 3.5 on a Ubuntu 16.04 machine. To install:
Download the repo:
git clone https://github.com/CAOR-MINES-ParisTech/ukfm.git
Install package requirement (numpy, matplotlib, etc):
cd ukfm cd python pip install -r requirements.txt
Keep into the Python folder and run:
pip install .
or:
pip install -e .
The -e
flag tells pip to install the package in-place, which lets you make
changes to the code without having to reinstall every time.
Matlab¶
The Matlab code has been tested with version R2019a without requiring any particular toolbox. To install:
Download the repo:
git clone https://github.com/CAOR-MINES-ParisTech/ukfm.git
Go to /my/directory/ukfm/matlab at the Matlab prompt and execute
importukfm
.You may save this path for your next Matlab sessions (via
savepath
).
Documentation¶
You need Sphinx to build the HTML documentation.
cd docsource pip install sphinx make html open build/html/index.html