Installation¶
SkPy supports Python 2.6+ and Python 3.
From PyPI¶
The easiest way to get started is by installing from PyPI:
$ pip install skpy
From the repo¶
SkPy can also be installed straight from the repo. First, clone a copy of it locally:
$ git clone git@github.com:Terrance/SkPy.git
$ cd SkPy
Then install SkPy as a link to the checkout:
$ pip install -e .
You can alternatively fetch the requirements and run the setup script manually:
$ pip install -r requirements.txt
$ python setup.py install
You can also just go ahead and import skpy
from the repo root, assuming the requirements are installed.
Requirements¶
Responses (for tests)