Configure your ComputerΒΆ

In order to ease the development of the StatisKit software suite on multiple operating systems, the Conda package and environment management system is used. To install Conda refer to the section Prerequisites.

Once Conda is installed, you need to create a development environment called statiskit-toolchain containing the meta-package statiskit-toolchain on your computer. To do so, type the following command line

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

Moreover, for

  • Windows users, you must download and install Visual Studio Community 2017 (available on this page).

  • Mac Os X users, you must download and install macOS 10.9 SDK. This can be done using the following command lines

    git clone https://github.com/phracker/MacOSX-SDKs.git --depth=1
    sudo cp -r MacOSX-SDKs/MacOSX10.9.sdk /opt/MacOSX10.9.sdk
    rm -rf MacOSX-SDKs
    

Warning

From that point on, any command line should be typed from the statiskit-toolchain environment. To do so, type the following command lines each time you launch a new console

conda activate statiskit-toolchain