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

    3 days ago · 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 …

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

    3 days 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 …

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

    3 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. Installing Python Modules — Python 3.14.3 documentation

    3 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 …

  5. ensurepip — Bootstrapping the pip installer — Python 3.14.3 …

    3 days ago · 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 …

  6. The initialization of the sys.path module search path — Python 3.14.3 ...

    3 days ago · Virtual environments place a pyvenv.cfg file in their prefix, which causes sys.prefix and sys.exec_prefix to point to them, instead of the base installation. The prefix and exec_prefix values of …

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

    3 days 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 …

  8. 5. Using Python on macOS — Python 3.14.3 documentation

    When working with multiple Python environments, it is usually safest and easiest to create and use virtual environments. This can avoid possible command name conflicts and confusion about which …

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

    In Python, file names, command line arguments, and environment variables are represented using the string type. On some systems, decoding these strings to and from bytes is necessary before passing …