diff options
author | srinivasan <shivnaren@gmail.com> | 2021-10-15 21:24:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 21:24:25 (GMT) |
commit | 11b2ae7f5bc0e7ebbfe944bb746a0b3dfcd7ff43 (patch) | |
tree | 495473aaeb49d85a66b9302790b0a08023042f3d | |
parent | 00ffc4513df7b89a168e88da4d1e3ac367f7682f (diff) | |
download | cpython-11b2ae7f5bc0e7ebbfe944bb746a0b3dfcd7ff43.zip cpython-11b2ae7f5bc0e7ebbfe944bb746a0b3dfcd7ff43.tar.gz cpython-11b2ae7f5bc0e7ebbfe944bb746a0b3dfcd7ff43.tar.bz2 |
bpo-45442: Add deactivate step to venv tutorial. (GH-28981)
@vsajip Sorry for the trouble—made a [fairly significant] git error in the previous PR.
Have edited the patch as you had said in #28959.
Automerge-Triggered-By: GH:vsajip
-rw-r--r-- | Doc/tutorial/venv.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/tutorial/venv.rst b/Doc/tutorial/venv.rst index 221c11c..58ad319 100644 --- a/Doc/tutorial/venv.rst +++ b/Doc/tutorial/venv.rst @@ -88,6 +88,11 @@ For example: '~/envs/tutorial-env/lib/python3.5/site-packages'] >>> +To deactivate a virtual environment, type:: + + deactivate + +into the terminal. Managing Packages with pip ========================== |