Mention driver packages, fixes #25

This commit is contained in:
Friedrich Lindenberg 2013-09-19 19:14:46 +02:00
parent a3613ef133
commit 36cbd4e417
2 changed files with 3 additions and 1 deletions

View File

@ -64,6 +64,7 @@ Contents
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
install
quickstart quickstart
freezefile freezefile
api api

View File

@ -8,7 +8,7 @@ The easiest way is to install ``dataset`` from the `Python Package Index <https:
.. code-block:: bash .. code-block:: bash
$ easy_install dataset $ pip install dataset
To install it manually simply download the repository from Github: To install it manually simply download the repository from Github:
@ -18,3 +18,4 @@ To install it manually simply download the repository from Github:
$ cd dataset/ $ cd dataset/
$ python setup.py install $ 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.