Update README Contributing section to encourage use of virtualenv (#765)

This commit is contained in:
Dan 2018-06-12 13:38:07 -07:00 committed by Jonathan Kim
parent 12ee52a13a
commit b72dfa87a4

View File

@ -73,9 +73,11 @@ If you want to learn even more, you can also check the following [examples](exam
## Contributing ## 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 ```sh
virtualenv venv
source venv/bin/activate
pip install -e ".[test]" pip install -e ".[test]"
``` ```