Installation#
Release#
The latest release of kinisi
can be installed from PyPI with pip
:
$ pip install kinisi
Bleeding-edge#
Alternatively, the latest development build can be installed Github, which can be installed directly from Github with pip
:
$ pip install git+https://github.com/bjmorgan/kinisi.git
Note, that if you already have kinisi
on your system, you may need to run pip uninstall kinisi
first to ensure you get the latest version.
Development#
If you are interesting in modifying the kinisi
code, you should clone the git repository and install kinisi
with the dev
option in editable mode.
$ git clone https://github.com/bjmorgan/kinisi.git
$ cd kinisi
$ pip install -e '.[dev]'