From 77645798a4839b3eb014ec8ab27f16fdbf98cb29 Mon Sep 17 00:00:00 2001 From: nickidw Date: Sun, 28 Apr 2019 18:44:14 +0200 Subject: [PATCH] Update raspberry-pi.markdown (#9338) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added additional dependency libssl-dev to avoid "fatal error: openssl/opensslv.h: No such file or directory” during pip3 install homeassistant step. --- source/_docs/installation/raspberry-pi.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/installation/raspberry-pi.markdown b/source/_docs/installation/raspberry-pi.markdown index 2e412cf0756..a8a9c858923 100644 --- a/source/_docs/installation/raspberry-pi.markdown +++ b/source/_docs/installation/raspberry-pi.markdown @@ -45,7 +45,7 @@ $ sudo apt-get upgrade -y Install the dependencies. ```bash -$ sudo apt-get install python3 python3-venv python3-pip libffi-dev +$ sudo apt-get install python3 python3-venv python3-pip libffi-dev libssl-dev ``` Add an account for Home Assistant called `homeassistant`.