add note re: prequisite packages with pip install (#8373)

This commit is contained in:
Dan Loewenherz 2019-02-14 13:23:36 -06:00 committed by Franck Nijhof
parent 1bc421380f
commit 18a2a773c0

View File

@ -18,4 +18,10 @@ If you are able to successfully run `python3 --version` but not `pip3`, install
$ python3 -m pip install homeassistant
```
On a Debian system, you can also install python3 by `sudo apt-get install python3`d and pip3 by `sudo apt-get install python3-pip`.
On a Debian system, you can also install python3 by `sudo apt-get install python3` and pip3 by `sudo apt-get install python3-pip`.
If you run into errors during installation, check that you've installed all the necessary prerequisite packages, which include `python3-dev`, `libffi-dev`, and `libssl-dev`. On a Debian-based system, you can install these via `apt-get`:
```bash
$ sudo apt-get install python3-dev libffi-dev libssl-dev
```