From: srinivasan Date: Fri, 15 Oct 2021 21:24:25 +0000 (+0530) Subject: bpo-45442: Add deactivate step to venv tutorial. (GH-28981) X-Git-Tag: v3.11.0a2~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11b2ae7f5bc0e7ebbfe944bb746a0b3dfcd7ff43;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Doc/tutorial/venv.rst b/Doc/tutorial/venv.rst index 221c11ca74b4..58ad31972f60 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 ==========================