Installation

Using conda

Installing scikit-data from the conda-forge channel can be achieved by adding conda-forge to your channels with:

$ conda config --add channels conda-forge

Once the conda-forge channel has been enabled, scikit-data can be installed with:

$ conda install scikit-data

It is possible to list all of the versions of scikit-data available on your platform with:

$ conda search scikit-data --channel conda-forge

Using pip

To install scikit-data, run this command in your terminal:

$ pip install skdata

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

From sources

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

You can either clone the public repository:

$ git clone git://github.com/OpenDataScienceLab/skdata

Or download the tarball:

$ curl  -OL https://github.com/OpenDataScienceLab/skdata/tarball/master

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

$ python setup.py install