From 9cbd2d11415e7f3cec8e7d08cb192d6e4aac466f Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 9 Apr 2016 15:49:40 -0700 Subject: [PATCH] pyvenv -> python3 -m venv --- source/getting-started/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index b7974af6749..b161bf6d241 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -23,7 +23,7 @@ footer: true Installing and running Home Assistant on your local machine is easy. Make sure you have [Python 3.4 or higher](https://www.python.org/downloads/) installed and execute the following code in a console:

-It's highly recommended to use a [virtual environment](https://docs.python.org/3.4/library/venv.html) aka `venv` to keep things separated. A virtual environment can be created by exceuting the following command: `pyvenv /path/where/you/home-assistant/` (or on some systems `pyvenv-3.4`). Then change to that the created directory and go the next step. +It's highly recommended to use a [virtual environment](https://docs.python.org/3.4/library/venv.html) to keep things separated. A virtual environment can be created by exceuting the following command: `python3 -m venv /path/where/you/home-assistant/`. Then change to the created directory and go the next step.

```bash