Create a section for installation notes

This commit is contained in:
Fabian Affolter 2016-07-17 17:50:28 +02:00
parent d341875bb0
commit 48d4d64fad
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -41,8 +41,18 @@ Configuration variables:
| PostgreSQL | `postgresql://SERVER_IP/DB_NAME` |
| PostgreSQL | `postgresql://scott:tiger@SERVER_IP/DB_NAME` |
**Note**: For MySQL you may have to install a few dependencies:
```
$ apt-get install libmysqlclient-dev
## {% linkable_title Installation notes %}
Not all Python bindings for the choosen database engine can be installed directly. This section contains additional details which should help you to get it working.
### {% linkable_title MYSQL %}
For MySQL you may have to install a few dependencies:
```bash
$ sudo apt-get install libmysqlclient-dev
$ pip3 install mysqlclient
```