Installing pyTD

pyTD supports Python 2.7, 3.4, 3.5, 3.6, and 3.7. The recommended installation method is via pip:

$ pip install pyTD

Below are the options for installing pyTD.

Warning

After pyTD is installed, it must be configured. See the pyTD Quick Start Guide for more information.

Dependencies

  • requests
  • pandas

For testing requirements, see testing.

Installation

The recommended installation method is pip. For more information about installing Python and pip, see “The Hitchhiker’s Guide to Python” Installation Guides.

Stable Release

$ pip install pyTD

Development Version

$ pip install git+https://github.com/addisonlynch/pyTD.git

or

$ git clone https://github.com/addisonlynch/pyTD.git
$ cd pyTD
$ pip install .

Older Versions

$ pip install pyTD=0.0.1

virtualenv

The use of virtualenv is highly recommended as below:

$ pip install virtualenv
$ virtualenv env
$ source env/bin/activate