From 48d4d64fad1d4a9058400a1c29e84b7ddfa30441 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 17 Jul 2016 17:50:28 +0200 Subject: [PATCH] Create a section for installation notes --- source/_components/recorder.markdown | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/source/_components/recorder.markdown b/source/_components/recorder.markdown index 2f2fd934377..d4b6f29666c 100644 --- a/source/_components/recorder.markdown +++ b/source/_components/recorder.markdown @@ -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 ``` + +