diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 340a2ce71c6..70f072a9a4a 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -27,7 +27,7 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
```bash pip3 install homeassistant -hass --open-ui +hass \-\-open-ui ```
Running these commands will:
@@ -42,7 +42,7 @@ hass --open-uiInstallation with Docker is straightforward. Adjust the following command so that /path/to/your/config/
points at the folder where you want to store your config and run it:
This will launch Home Assistant and serve its web interface from port 8123 on your Docker host.
@@ -61,7 +61,7 @@ Once that is complete, installing and running Home Assistant on your local machi```bash pip3 install homeassistant -hass --open-ui +hass \-\-open-ui ```
Running these commands will:
@@ -87,15 +87,15 @@ hass --open-uiIn order to update Home Assistant to the latest stable release, simply type the following into a console:
```bash -pip install --upgrade homeassistant +pip install \-\-upgrade homeassistant ```If you would like to stay up to date with the newest unstable builds (alphas, betas, and release candidates), use this command:
```bash -pip install --upgrade --pre homeassistant +pip install \-\-upgrade \-\-pre homeassistant ```If you want to see what Home Assistant can do, you can start the demo mode by running hass --demo-mode
. Home Assistant has a few other command line flags that can be displayed by running hass --help
.
If you want to see what Home Assistant can do, you can start the demo mode by running hass \-\-demo-mode
. Home Assistant has a few other command line flags that can be displayed by running hass \-\-help
.
From here you may now start configuring Home Assistant to your liking. For more advanced users, the advanced configuration page contains brief tutorials on creating more advanced installations.