12. Virtual Environments and Packages — Python 3.10.1 ...
docs.python.org › 3 › tutorialJan 05, 2022 · 12. Virtual Environments and Packages — Python 3.10.0 documentation. 12. Virtual Environments and Packages ¶. 12.1. Introduction ¶. Python applications will often use packages and modules that don’t come as part of the standard library. Applications will sometimes need a specific version of a library, because the application may require ...
venv — Creation of virtual environments — Python 3.10.1 ...
docs.python.org › 3 › libraryJan 05, 2022 · The venv module provides support for creating lightweight “virtual environments” with their own site directories, optionally isolated from system site directories. Each virtual environment has its own Python binary (which matches the version of the binary that was used to create this environment) and can have its own independent set of installed Python packages in its site directories.