
venv — Creation of virtual environments — Python 3.14.3 documentation
2 days ago · A virtual environment is created on top of an existing Python installation, known as the virtual environment’s “base” Python, and by default is isolated from the packages in the base …
12. Virtual Environments and Packages — Python 3.14.3 documentation
1 day ago · The solution for this problem is to create a virtual environment, a self-contained directory tree that contains a Python installation for a particular version of Python, plus a number of additional …
4. Using Python on Windows — Python 3.10.19 documentation
Mar 10, 2019 · If the launcher is run with no explicit Python version specification, and a virtual environment (created with the standard library venv module or the external virtualenv tool) active, the …
Installing Python Modules — Python 3.14.3 documentation
2 days ago · venv is the standard tool for creating virtual environments, and has been part of Python since Python 3.3. Starting with Python 3.4, it defaults to installing pip into all created virtual …
zipapp — Manage executable Python zip archives — Python 3.14.3 ...
1 day ago · Using the zipapp module, it is possible to create self-contained Python programs, which can be distributed to end users who only need to have a suitable version of Python installed on their system.
site — Site-specific configuration hook — Python 3.14.3 documentation
2 days ago · An executable line in a .pth file is run at every Python startup, regardless of whether a particular module is actually going to be used. Its impact should thus be kept to a minimum.
6. Modules — Python 3.14.3 documentation
2 days ago · In most cases Python programmers do not use this facility since it introduces an unknown set of names into the interpreter, possibly hiding some things you have already defined.
asyncio — Asynchronous I/O — Python 3.14.3 documentation
asyncio is used as a foundation for multiple Python asynchronous frameworks that provide high-performance network and web-servers, database connection libraries, distributed task queues, etc.
ensurepip — Bootstrapping the pip installer — Python 3.14.3 …
2 days ago · Source code: Lib/ensurepip The ensurepip package provides support for bootstrapping the pip installer into an existing Python installation or virtual environment.
2. Using Python on Unix platforms — Python 3.14.3 documentation
3 days ago · You can compile the latest version of Python from source. In the event that the latest version of Python doesn’t come preinstalled and isn’t in the repositories as well, you can make …