Adding dependency documentation for MySQL.

Merging change I347e1c235bc82d6e510761f4b1c3c3de62994c2f fixing pip
info.

Co-Authored-By: Gauvain Pocentek <gauvain.pocentek@objectif-libre.com>

Change-Id: I9a1b76ed261c69a92cc3e4e6b6100e43f98fea1e
This commit is contained in:
Tim Kelsey 2014-06-05 14:03:37 +01:00
parent 06224bcd73
commit b2c64e45d5
1 changed files with 24 additions and 3 deletions

View File

@ -4,9 +4,30 @@ Installation
At the command line::
$ pip install
$ pip install oslo.db
Or, if you have virtualenvwrapper installed::
$ mkvirtualenv
$ pip install
$ mkvirtualenv
$ pip install oslo.db
You will also need to install at least one SQL backend::
$ pip install MySQL-python
Or::
$ pip install pysqlite
Using with MySQL
----------------
If using MySQL make sure to install the MySQL client development package for
your distro. On Ubuntu this is done as follows::
$ sudo apt-get install libmysqlclient-dev
$ pip install MySQL-python
The installation of MySQL-python will fail if libmysqlclient-dev is not
installed first. Note that even in a virtual environment the MySQL package will
be installed system wide.