Add links (as requested)

This commit is contained in:
Fabian Affolter 2017-12-19 08:57:47 +01:00
parent ef51255884
commit 8edda562f0
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -14,34 +14,34 @@ If you already have Python 3.5 or later installed, you can easily give Home Assi
It's recommended when installing Python packages that you use a virtual environment. This will make sure that your Python installation and Home Assistant installation won't impact one another. It's recommended when installing Python packages that you use a virtual environment. This will make sure that your Python installation and Home Assistant installation won't impact one another.
_(If you're on a Debian based system, you will need to install Python virtual environment support using `apt-get install python3-pip python3-venv`)_ _(If you're on a Debian based system, you will need to install Python virtual environment support using `apt-get install python3-pip python3-venv`.)_
1. Create a virtual environment: 1. Create a virtual environment:
``` ```
python3 -m venv homeassistant $ python3 -m venv homeassistant
``` ```
2. Open virtual environment: 2. Open virtual environment:
``` ```
cd homeassistant $ cd homeassistant
``` ```
3. Activate virtual environment: 3. Activate virtual environment:
``` ```
source bin/activate $ source bin/activate
``` ```
4. Install Home Assistant: 4. Install Home Assistant:
``` ```
python3 -m pip install --upgrade homeassistant $ python3 -m pip install --upgrade homeassistant
``` ```
5. Run Home Assistant: 5. Run Home Assistant:
``` ```
hass --open-ui $ hass --open-ui
``` ```
### {% linkable_title Notes %} ### {% linkable_title Notes %}
- In the future, if you want to start Home Assistant again, follow step 2, 3 and 5. - In the future, if you want to start Home Assistant again, follow step 2, 3 and 5.
- If you want to upgrade Home Assistant, follow step 2 and 3 and 4. - If you want to upgrade Home Assistant, follow step 2, 3 and 4.
<p class='info'> <p class='info'>
Looking for more advanced guides? Check our <a href='/docs/installation/'>available guides</a>. Looking for more advanced guides? Check our the [Rasbian guide](/docs/installation/raspberry-pi/) or the [available installation guides](/docs/installation/]. For details about autostarting, refer to the [autostart section](/docs/autostart/) in the documentation.
</p> </p>