Installation¶
There are numerous of ways to install pyds, the easiest of which is using pip (or pip + git for the development version).
Dependencies¶
- Python 3000 (3.4+)
- pip (optional)
Source¶
To install the latest release from source, first grab the latest release archive from https://github.com/jashandeep-sohi/pyds/releases and then use the included distuitls setup script to install:
$ wget 'https://github.com/jashandeep-sohi/pyds/releases/download/v0.2.0/pyds-0.2.0.tar.bz2'
$ tar xfj pyds-0.2.0.tar.bz2
$ cd pyds-0.2.0
$ python setup.py install
Git¶
You can get the latest development version by clonning the development repository and installing from there:
$ git clone 'https://github.com/jashandeep-sohi/pyds.git'
$ cd pyds
$ python setup.py install
pip + Git¶
You can also get the latest development version using pip:
$ pip install 'git+https://github.com/jashandeep-sohi/pyds.git'