diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 220084e9f74..de8a2831f92 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -18,8 +18,77 @@ footer: true
The preparation of a Fedora 22 host will only take a couple of minutes. First install Python 3.4, git
and the other needed packages out of the Fedora Package Collection. This ensure that you receive updates in the future.
+It's assumed that your user has an entry in the sudoers file. Otherwise, run the commands which needs more privileges as root. +
+ +```bash +sudo dnf -y install python3 python3-devel git gcc +``` + +CentOS is providing longtime support and often not shipping the latest release of a software component. To run, Python 3.x on CentOS Software Collections needs to be activated.
+ +```bash git clone --recursive https://github.com/balloob/home-assistant.git @@ -87,7 +156,7 @@ eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" ``` -
Step 2. Install requirements
+