Installation

This page covers installation for users. If you want to contribute to ML Launchpad, please see Contributing.

Stable release

To install ML Launchpad, run this command in your terminal:

$ pip install mllaunchpad

This is the preferred method for installing ML Launchpad, 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 latest source

The sources for ML Launchpad can be downloaded from the Github repo.

If you just want to use the latest development version, the easiest way is to use pip. The following fetches the code and installs the package:

$ pip install git+https://github.com/schuderer/mllaunchpad

If you want to actually be able to look at the code, you can either clone the public repository:

$ git clone git://github.com/schuderer/mllaunchpad

Or download the tarball:

$ curl -L https://github.com/schuderer/mllaunchpad/tarball/master > mllaunchpad.tar.gz

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

$ python setup.py install
$ # or alternatively:
$ pip install .