From 1d5d20d178d53f6ba801ab37eae7bacc4f8fde19 Mon Sep 17 00:00:00 2001 From: Jason Hu Date: Tue, 5 Mar 2019 20:44:13 -0800 Subject: [PATCH] Create a separate venv folder should be better (#192) --- docs/development_environment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development_environment.md b/docs/development_environment.md index b068d4ff..5693f7f3 100644 --- a/docs/development_environment.md +++ b/docs/development_environment.md @@ -77,8 +77,8 @@ $ git remote add upstream https://github.com/home-assistant/home-assistant.git To isolate your environment from the rest of the system, set up a [`venv`](https://docs.python.org/3/library/venv.html). Within the `home-assistant` directory, create and activate your virtual environment. ```bash -$ python3 -m venv . -$ source bin/activate +$ python3 -m venv venv +$ source venv/bin/activate ``` Install the requirements with a provided script named `setup`.