From 1c9bb986780b48ba2a6c05dbff6cc8905a5ed75a Mon Sep 17 00:00:00 2001 From: eyager1 <44526531+eyager1@users.noreply.github.com> Date: Mon, 24 Jun 2019 06:16:35 -0400 Subject: [PATCH] Additional instructions for Mariadb 10.3 (#9679) In Debian buster (MariaDB 10.3) the command mysql_config needed by the python package mysqlclient was moved to the package libmariadb-dev-compat. --- source/_components/recorder.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/recorder.markdown b/source/_components/recorder.markdown index 6035c987ee8..9c522e73cc5 100644 --- a/source/_components/recorder.markdown +++ b/source/_components/recorder.markdown @@ -196,7 +196,7 @@ homeassistant@homeassistant:~$ source /srv/homeassistant/bin/activate (homeassistant) homeassistant@homeassistant:~$ pip3 install mysqlclient ``` -For MariaDB you may have to install a few dependencies. If you're using MariaDB version 10.2, `libmariadbclient-dev` was renamed to `libmariadb-dev`; please install the correct package based on your MariaDB version. +For MariaDB you may have to install a few dependencies. If you're using MariaDB version 10.2, `libmariadbclient-dev` was renamed to `libmariadb-dev`. If you're using MariaDB 10.3, the package `libmariadb-dev-compat` must also be installed. Please install the correct packages based on your MariaDB version. On the Python side we use the `mysqlclient`: