Update Centos Installation include dependencies

I attempted to follow the documentation to install HASS on to Centos 7.5 minimal. I found gcc gcc-c++ were required for hass to complete the auto install of various python packages and systemd-devel for zwave. Figure this information/step should be included in the installation wiki for centos.
This commit is contained in:
Tom 2018-05-16 09:24:33 +01:00 committed by GitHub
parent 642e8fcb9d
commit 83aaf05c47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,11 @@ First of all install the software collection repository as root. For example, on
```bash
$ yum install centos-release-scl
```
Install some dependencies you'll need later.
```bash
$ yum install gcc gcc-c++ systemd-devel
```
Then install the Python 3.6 package: