diff --git a/_deploy b/_deploy index 86dee3fe5a1..853a81fe69b 160000 --- a/_deploy +++ b/_deploy @@ -1 +1 @@ -Subproject commit 86dee3fe5a117e06d006e4736c485582dfe25ccd +Subproject commit 853a81fe69bcc1acff5492e200a6ab9944b86af2 diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 6a0eca13c9c..d230dd379cb 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -23,14 +23,16 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
```bash git clone --recursive https://github.com/balloob/home-assistant.git +python3 -m venv home-assistant cd home-assistant -python3 -m pip install --user -r requirements.txt +python3 -m pip install -r requirements.txt python3 -m homeassistant --open-ui ```
Running these commands will:
If you run into any issues, please see the troubleshooting page.
- You can run Home Assistant in demo mode by appending --demo-mode
to line 4.
+ You can run Home Assistant in demo mode by appending --demo-mode
to line 5.
@@ -60,9 +62,6 @@ docker run -d --name="home-assistant" -v /path/to/your/config:/config -v /etc/lo
When using boot2docker on OS X you are unable to map the local time to your Docker container. Replace -v /etc/localtime:/etc/localtime:ro
with -e "TZ=America/Los_Angeles"
(replacing America/Los_Angeles with your timezone)
-Home Assistant currently does not fare well if server and client are in different time zones. -
It will be up and running on port 8123
-
- You can run Home Assistant in demo mode by appending --demo-mode
to line 4.
-
If you want to update to the latest version in the future, run: scripts/update
.
-Home Assistant currently does not fare well if server and client are in different time zones. -