Add missing binary dependencies. (#2413)

* Add missing binary dependencies.

* Update development_environment.markdown
This commit is contained in:
Andrey 2017-04-12 13:31:23 +03:00 committed by Fredrik Lindqvist
parent 3cf770aec1
commit 158f7b333f

View File

@ -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
```
<p class='note'>
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`
</p>