Add note for MySQL install on Raspbian Stretch (#3514)

* Add note for MySQL install on Raspbian Stretch

Added note as detailed in https://github.com/home-assistant/home-assistant.github.io/issues/3509

* Update recorder.markdown

Change is to the Debian base package and not to Raspbian specifically. 
Edited your change to replace the suggested package instead.
This commit is contained in:
Charles Garwood 2017-10-05 05:12:04 -04:00 committed by Fredrik Lindqvist
parent b3f8dfc283
commit 23d2dcb016

View File

@ -116,9 +116,10 @@ $ pip3 install mysqlclient
For MySQL you may have to install a few dependencies. You can choose between `pymysql` and `mysqlclient`: For MySQL you may have to install a few dependencies. You can choose between `pymysql` and `mysqlclient`:
```bash ```bash
$ sudo apt-get install libmysqlclient-dev $ sudo apt-get install default-libmysqlclient-dev
$ pip3 install mysqlclient $ pip3 install mysqlclient
``` ```
If you are in a virtual environment, don't forget to activate it before installing the `mysqlclient` Python package. If you are in a virtual environment, don't forget to activate it before installing the `mysqlclient` Python package.
```bash ```bash