Getting Started¶
Prerequisites¶
Python 3.6-3.8
Python Pip
Docker
MISTK Python Library¶
The MISTK python library is available as both source code and Python wheel files at the MISTK Github Repository.
Installation¶
In order to develop algorithms to be integrated into MISTK, the MISTK Core Library (and its dependencies) must be available on PYTHONPATH.
You can download them down from the MISTK Github Repository Releases page and install the wheel files with pip:
pip install mistk-*-py3-none-any.whl
Verify that mistk is now installed on PYTHON PATH by running:
>>> import mistk
Assumptions¶
MISTK developers are assumed to understand:
How to install Python 3.6 - 3.8 (More Information)
How to install packages via Python Pip (Guide Available Here)
How to package Python projects via setuptools (Guide Available Here)
How build/run docker images (Guide Available Here)
It is helpful to also be familiar with Anaconda for managing Python distributions packages. (More Info Here)