Installation

PLEASE NOTE: HmtNote only supports Python >= 3.6!

Stable release

To install HmtNote, run this command in your terminal:

$ pip install hmtnote

This is the preferred method to install HmtNote, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

From sources

The sources for HmtNote can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone https://github.com/robertopreste/HmtNote

Or download the tarball:

$ curl  -OL https://github.com/robertopreste/HmtNote/tarball/master

Once you have a copy of the source, you can install it with:

$ cd HmtNote/
$ python setup.py install

If you have issues with this installation, try creating a new conda environment from the given environment.yml file:

$ conda env create -f environment.yml

This command should create a conda env called HmtNote, which contains the requirements for HmtNote. You can then activate this environment and install HmtNote:

$ conda activate HmtNote
$ pip install HmtNote

If none of these methods works for you, please feel free to open an issue on GitHub, and I’ll be happy to help.