About 50 results
Open links in new tab
  1. venv — Creation of virtual environments — Python 3.14.3 documentation

    2 days ago · Source code: Lib/venv/ The venv module supports creating lightweight “virtual environments”, each with their own independent set of Python packages installed in their site …

  2. 12. Virtual Environments and Packages — Python 3.14.3 documentation

    2 days ago · This will create the tutorial-env directory if it doesn’t exist, and also create directories inside it containing a copy of the Python interpreter and various supporting files. A common directory …

  3. 4. Using Python on Windows — Python 3.14.3 documentation

    2 days ago · Create a virtual environment using python -m venv <env path>. If the python or py commands do not seem to be working, please see the Troubleshooting section below.

  4. os — Miscellaneous operating system interfaces — Python 3.14.3 ...

    Source code: Lib/os.py This module provides a portable way of using operating system dependent functionality. If you just want to read or write a file see open(), if you want to manipulate paths, s...

  5. 1. Command line and environment — Python 3.14.3 documentation

    1.1.2. Generic options ¶ -? ¶ -h ¶ --help ¶ Print a short description of all command line options and corresponding environment variables and exit. --help-env ¶ Print a short description of Python …

  6. subprocess — Subprocess management — Python 3.14.3 documentation

    2 days ago · Prior to Python 3.5, these three functions comprised the high level API to subprocess. You can now use run() in many cases, but lots of existing code calls these functions.

  7. Python Initialization Configuration — Python 3.14.3 documentation

    4 days ago · Python Initialization Configuration ¶ PyInitConfig C API ¶ Added in version 3.14. Python can be initialized with Py_InitializeFromInitConfig(). The Py_RunMain() function can be used to write …

  8. 2. Using the Python Interpreter — Python 3.14.3 documentation

    2 days ago · For more on interactive mode, see Interactive Mode. 2.2. The Interpreter and Its Environment ¶ 2.2.1. Source Code Encoding ¶ By default, Python source files are treated as …

  9. 2. Using Python on Unix platforms — Python 3.14.3 documentation

    2 days ago · which searches for the Python interpreter in the whole PATH. However, some Unices may not have the env command, so you may need to hardcode /usr/bin/python3 as the interpreter path. …

  10. zipapp — Manage executable Python zip archives — Python 3.14.3 ...

    2 days ago · Typically, you should use an “/usr/bin/env python2” or “/usr/bin/env python3”, depending on whether your code is written for Python 2 or 3. Creating Standalone Applications with zipapp ¶