Global web icon
python.org
https://docs.python.org/3/library/venv.html
venv — Creation of virtual environments — Python 3.14.2 documentation
Create a virtual environment by specifying the target directory (absolute or relative to the current directory) which is to contain the virtual environment. The create method will either create the environment in the specified directory, or raise an appropriate exception.
Global web icon
python.org
https://docs.python.org/3/tutorial/venv.html
12. Virtual Environments and Packages — Python 3.14.2 documentation
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 packages. Different applications can then use different virtual environments.
Global web icon
python.org
https://docs.python.org/3.10/using/windows.html?hi…
4. Using Python on Windows — Python 3.10.19 documentation
Virtual environment s can be created with python -m venv and activated and used as normal. If you have installed another version of Python and added it to your PATH variable, it will be available as python.exe rather than the one from the Microsoft Store.
Global web icon
python.org
https://docs.python.org/3/installing/index.html
Installing Python Modules — Python 3.14.2 documentation
A virtual environment is a semi-isolated Python environment that allows packages to be installed for use by a particular application, rather than being installed system wide.
Global web icon
python.org
https://docs.python.org/3/library/ensurepip.html
ensurepip — Bootstrapping the pip installer — Python 3.14.2 documentation
In most cases, end users of Python shouldn’t need to invoke this module directly (as pip should be bootstrapped by default), but it may be needed if installing pip was skipped when installing Python (or when creating a virtual environment) or after explicitly uninstalling pip.
Global web icon
python.org
https://docs.python.org/pl/3.8/library/index.html
Biblioteka standardowa Pythona — Python 3.8.20 - dokumentacja
For Unix-like operating systems Python is normally provided as a collection of packages, so it may be necessary to use the packaging tools provided with the operating system to obtain some or all of the optional components.