summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-09-06 10:38:23 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-09-06 10:38:23 (GMT)
commit1d52096d1466ed771c22a2d97e8cae6935fcdf8e (patch)
treeae7e6b20e148734b3dbab91e4e48ae7a85737712 /Doc/glossary.rst
parentaf117ed3d74bf0aa8b75c73155bdd63673133c8f (diff)
downloadcpython-1d52096d1466ed771c22a2d97e8cae6935fcdf8e.zip
cpython-1d52096d1466ed771c22a2d97e8cae6935fcdf8e.tar.gz
cpython-1d52096d1466ed771c22a2d97e8cae6935fcdf8e.tar.bz2
Issue #22295: Adopt 'python -m pip' as the preferred invocation
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 1093376..5fb9126 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -857,6 +857,14 @@ Glossary
dictionary view to become a full list use ``list(dictview)``. See
:ref:`dict-views`.
+ virtual environment
+ A cooperatively isolated runtime environment that allows Python users
+ and applications to install and upgrade Python distribution packages
+ without interfering with the behaviour of other Python applications
+ running on the same system.
+
+ See also :ref:`scripts-pyvenv`
+
virtual machine
A computer defined entirely in software. Python's virtual machine
executes the :term:`bytecode` emitted by the bytecode compiler.