Install it !

Prerequisites

In order to ease the installation of the StatisKit software suite on multiple operating systems, the Conda package and environment management system is used.

Note

For more information refers to the Conda documentation.

To install Conda, please refers to this page. Installers for:

  • Miniconda are available on this page.
  • Anaconda are available on this page.

Note

We recommend to:

  • Follow the instructions given for the regular installation.
  • Install Miniconda if you are only interested by StatisKit.
  • Install Conda from .pkg installer on Mac Os X.
  • Install Miniconda 3 or Anaconda 3 since the supported version of Statiskit is based on Python 3.

Warning

From that point on, any command line should be typed

  • For Windows users, in the Anaconda Prompt console that is available in the Windows start menu.

  • For Unix users, in your favorite Terminal configured to use Conda. To do so, for Linux users, it can be required to type the following command line

    echo ". <CONDA_PREFIX>/etc/profile.d/conda.sh" >> ~/.bashrc
    

    where <CONDA_PREFIX> must be replaced by the path where Conda has been installed.

Recommanded Installation

The recommended installation rely on a Conda meta-package. To install the Python interface, type the following command lines

conda create -n python-statiskit python-statiskit -c statiskit -c defaults --override-channels

Then, to activate the python-statiskit environment, type the following command line

conda activate python-statiskit