File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 17
17
18
18
The :mod: `venv ` module provides support for creating lightweight "virtual
19
19
environments" with their own site directories, optionally isolated from system
20
- site directories. Each virtual environment has its own Python binary (allowing
21
- creation of environments with various Python versions) and can have its own
22
- independent set of installed Python packages in its site directories.
20
+ site directories. Each virtual environment has its own Python binary (which
21
+ matches the version of the binary that was used to create this environment) and
22
+ can have its own independent set of installed Python packages in its site
23
+ directories.
23
24
24
25
See :pep: `405 ` for more information about Python virtual environments.
25
26
27
+ .. seealso ::
28
+
29
+ `Python Packaging User Guide: Creating and using virtual environments
30
+ <https://packaging.python.org/installing/#creating-virtual-environments> `__
26
31
27
32
28
33
Creating virtual environments
Original file line number Diff line number Diff line change @@ -20,11 +20,6 @@ directory is specified, it will be re-used.
20
20
.. versionchanged:: 3.5
21
21
The use of ``venv`` is now recommended for creating virtual environments.
22
22
23
- .. seealso::
24
-
25
- `Python Packaging User Guide: Creating and using virtual environments
26
- <https://packaging.python.org/installing/#creating-virtual-environments>`__
27
-
28
23
.. highlight:: none
29
24
30
25
On Windows, invoke the ``venv`` command as follows::
You can’t perform that action at this time.
0 commit comments