File: install.rst

package info (click to toggle)
python-dataset 1.6.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 1,420; makefile: 162
file content (22 lines) | stat: -rw-r--r-- 638 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

Installation Guide
==================

The easiest way is to install ``dataset`` from the `Python Package Index
<https://pypi.python.org/pypi/dataset/>`_ using ``pip`` or ``easy_install``:

.. code-block:: bash

   $ pip install dataset

To install it manually simply download the repository from Github:

.. code-block:: bash

   $ git clone git://github.com/pudo/dataset.git
   $ cd dataset/
   $ python setup.py install

Depending on the type of database backend, you may also need to install a
database specific driver package. For MySQL, this is ``MySQLdb``, for Postgres
its ``psycopg2``. SQLite support is integrated into Python.