Add missing step to CONTRIBUTING.md to activate virtualenv (#848)

This commit is contained in:
Paulina Khew 2022-08-30 18:16:38 -04:00 committed by GitHub
parent 7fc08809f0
commit be27391461
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,7 @@ $env:SPOTIPY_REDIRECT_URI="http://localhost:8080"
```bash ```bash
$ virtualenv --python=python3.7 env $ virtualenv --python=python3.7 env
$ source env/bin/activate
(env) $ pip install --user -e . (env) $ pip install --user -e .
(env) $ python -m unittest discover -v tests (env) $ python -m unittest discover -v tests
``` ```