From 158f7b333f68d4b8de25726eba584c078829253e Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 12 Apr 2017 13:31:23 +0300 Subject: [PATCH] Add missing binary dependencies. (#2413) * Add missing binary dependencies. * Update development_environment.markdown --- source/developers/development_environment.markdown | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/developers/development_environment.markdown b/source/developers/development_environment.markdown index 0e972b6a7e8..f8ae40fba9d 100644 --- a/source/developers/development_environment.markdown +++ b/source/developers/development_environment.markdown @@ -27,8 +27,16 @@ $ git remote add upstream https://github.com/home-assistant/home-assistant.git Install the core dependencies. ```bash -$ sudo apt-get install python3-pip python3-dev libssl-dev +$ sudo apt-get install python3-pip python3-dev ``` + +#### {% linkable_title Platform dependencies %} + +In order to run `script/setup` below you will need some more dependencies. +```bash +$ sudo apt-get install libssl-dev libxml2-dev libxslt1-dev libjpeg-dev libffi-dev +``` +

Different distributions have different package installation mechanisms and sometimes packages names as well. For example Centos would use: `sudo yum install epel-release && sudo yum install python34 python34-devel mysql-devel`