mirror of
https://github.com/python/cpython.git
synced 2026-03-02 19:10:46 +00:00
[3.14] Improved venv docs to indicate that isolation is the default. (GH-136698) (GH-136705)
(cherry picked from commit 8e2f4b4483)
Co-authored-by: Facundo Batista <facundo@taniquetil.com.ar>
Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk>
This commit is contained in:
parent
9bf3464852
commit
2ce207108c
1 changed files with 4 additions and 4 deletions
|
|
@ -22,10 +22,10 @@ The :mod:`!venv` module supports creating lightweight "virtual environments",
|
|||
each with their own independent set of Python packages installed in
|
||||
their :mod:`site` directories.
|
||||
A virtual environment is created on top of an existing
|
||||
Python installation, known as the virtual environment's "base" Python, and may
|
||||
optionally be isolated from the packages in the base environment,
|
||||
so only those explicitly installed in the virtual environment are available.
|
||||
See :ref:`sys-path-init-virtual-environments` and :mod:`site`'s
|
||||
Python installation, known as the virtual environment's "base" Python, and by
|
||||
default is isolated from the packages in the base environment,
|
||||
so that only those explicitly installed in the virtual environment are
|
||||
available. See :ref:`sys-path-init-virtual-environments` and :mod:`site`'s
|
||||
:ref:`virtual environments documentation <site-virtual-environments-configuration>`
|
||||
for more information.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue