diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-09-06 10:38:23 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-09-06 10:38:23 (GMT) |
commit | 1d52096d1466ed771c22a2d97e8cae6935fcdf8e (patch) | |
tree | ae7e6b20e148734b3dbab91e4e48ae7a85737712 /Doc/glossary.rst | |
parent | af117ed3d74bf0aa8b75c73155bdd63673133c8f (diff) | |
download | cpython-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.rst | 8 |
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. |