Merge pull request #19 from WardMaes/master

Add instructions to exit virtual environment
This commit is contained in:
Bonnie I-Man Ng 2021-05-06 17:30:17 +08:00 committed by GitHub
commit c1c3f8bcb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3400,6 +3400,8 @@ source .venv/bin/activate
type pip type pip
# 5. Now you can install your pip package, here requirements.txt is simply a txt file containing all the packages you want. (e.g tornado==4.5.3). # 5. Now you can install your pip package, here requirements.txt is simply a txt file containing all the packages you want. (e.g tornado==4.5.3).
pip install -r requirements.txt pip install -r requirements.txt
# 6. Exit virtual environment
deactivate
``` ```