File: install.rst

package info (click to toggle)
terminaltables3 4.0.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,328 kB
  • sloc: python: 2,691; makefile: 93; sh: 11
file content (38 lines) | stat: -rw-r--r-- 953 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.. _install:

============
Installation
============

Getting started is pretty simple. The first step is to install the library.

Pip Install
===========

The easiest way to get terminaltables is to use `pip <https://pip.pypa.io>`_. Simply run this command.

.. code-block:: bash

    pip install terminaltables

Latest from GitHub
==================

You can also elect to install the latest bleeding-edge version by using pip to install directly from the GitHub
repository.

.. code-block:: bash

    pip install git+https://github.com/Robpol86/terminaltables.git

Clone and Install
=================

Lastly you can also just clone the repo and install from it. Usually you only need to do this if you plan on
`contributing <https://github.com/Robpol86/terminaltables/blob/master/CONTRIBUTING.md>`_ to the project.

.. code-block:: bash

    git clone https://github.com/Robpol86/terminaltables.git
    cd terminaltables
    python setup.py install