Create a separate venv folder should be better (#192)

This commit is contained in:
Jason Hu 2019-03-05 20:44:13 -08:00 committed by GitHub
parent d03e3ddced
commit 1d5d20d178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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