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 ``` + +