From 8dfb4bd0214c9aa8aa70ae1b5608f424664aaf6f Mon Sep 17 00:00:00 2001 From: Pascal Roeleven Date: Thu, 15 Oct 2020 19:45:34 +0200 Subject: [PATCH] Add dependencies required for building Pillow (#15240) If Pillow needs to be build from source (because there aren't any wheels available) zlib1g-dev and libjpeg-dev are required. --- 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 bec6496346d..2e0c6e1c24c 100644 --- a/source/_docs/installation/raspberry-pi.markdown +++ b/source/_docs/installation/raspberry-pi.markdown @@ -40,7 +40,7 @@ sudo apt-get upgrade -y Install the dependencies. ```bash -sudo apt-get install python3 python3-dev python3-venv python3-pip libffi-dev libssl-dev libtiff-dev autoconf build-essential libopenjp2-7 +sudo apt-get install python3 python3-dev python3-venv python3-pip libffi-dev libssl-dev libtiff-dev autoconf build-essential libopenjp2-7 libjpeg-dev zlib1g-dev ``` Add an account for Home Assistant Core called `homeassistant`.