Installation

From PyPi

$ pip install scikit-hts

With optional dependencies

Geo Utilities

This allows the usage of scikit-hts’s geo handling capabilities. See more: Geo Handling Capabilities.

See more at

$ pip install scikit-hts[geo]

Facebook’s Prophet Support

This allows to train models using Facebook’s Prophet

$ pip install scikit-hts[prophet]

Auto-Arima

This allows to train models using Alkaline-ml’s excellent auto arima implementation

$ pip install scikit-hts[auto-arima]

Distributed Training

This allows to run distributed training with a local or remote Dask cluster

$ pip install scikit-hts[distributed]

Everything

Install’s all optional dependencies

$ pip install scikit-hts[all]

From sources

The sources for scikit-hts can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/carlomazzaferro/scikit-hts

Or download the tarball:

$ curl  -OL https://github.com/carlomazzaferro/scikit-hts/tarball/master

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

$ python setup.py install