From 68a9fe88f9fd83097c3f4b8ab856116e92332557 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 6 Jul 2015 20:52:24 -0700 Subject: [PATCH] Add pyvenv to install instructions --- _deploy | 2 +- source/getting-started/index.markdown | 16 ++++------------ 2 files changed, 5 insertions(+), 13 deletions(-) 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:

  1. Download Home Assistant
  2. +
  3. Setup an isolated environment
  4. Navigate to downloaded files
  5. Install the dependencies
  6. Launch Home Assistant and serve web interface on http://localhost:8123
  7. @@ -38,7 +40,7 @@ python3 -m homeassistant --open-ui

    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. -

    @@ -135,17 +134,10 @@ python3 -m homeassistant

    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. -