Encourage use of virtualenv when developing

This commit is contained in:
Daniel Gallagher 2018-06-08 22:55:18 -07:00
parent 1b3e7f3b96
commit d28f7be265

View File

@ -73,9 +73,11 @@ If you want to learn even more, you can also check the following [examples](exam
## Contributing
After cloning this repo, ensure dependencies are installed by running:
After cloning this repo, create a [virtualenv](https://virtualenv.pypa.io/en/stable/) and ensure dependencies are installed by running:
```sh
virtualenv venv
source venv/bin/activate
pip install -e ".[test]"
```