venv —- 虚拟环境的创建

Added in version 3.3.

源码: Lib/venv/


venv 模块支持创建轻量的“虚拟环境”,每个虚拟环境将拥有它们自己独立的安装在其 site 目录中的 Python 软件包集合。 虚拟环境是在现有的 Python 安装版基础之上创建的,这被称为虚拟环境的“基础”Python,并且还可选择与基础环境中的软件包隔离开来,这样只有在虚拟环境中显式安装的软件包才是可用的。

当在虚拟环境中使用时,常见安装工具如 pip 将把 Python 软件包安装到虚拟环境而无需显式地指明这一点。

虚拟环境是(主要的特性):

  • 用来包含支持一个项目(库或应用程序)所需的特定 Python 解释器、软件库和二进制文件。 它们在默认情况下与其他虚拟环境中的软件以及操作系统中安装的 Python 解释器和库保持隔离。

  • 包含在一个目录中,根据惯例被命名为项目目录下的 .venvvenv,或是有许多虚拟环境的容器目录下,如 ~/.virtualenvs

  • 不可签入 Git 等源代码控制系统。

  • 被认为是可丢弃的 — 它应当能被简单地删除并从头开始重建。 你不应在此环境中放置任何项目代码。

  • 不被视为是可移动或可复制的 —— 你只能在目标位置重建相同的环境。

请参阅 PEP 405 了解有关 Python 虚拟环境的更多背景信息。

参见

Python Packaging User Guide: Creating and using virtual environments

Availability: not Android, not iOS, not WASI.

此模块在 移动平台WebAssembly 平台 上不受支持。

创建虚拟环境

虚拟环境 是通过执行 venv 模块来创建的:

  1. python -m venv /path/to/new/virtual/environment

This creates the target directory (including parent directories as needed) and places a pyvenv.cfg file in it with a home key pointing to the Python installation from which the command was run. It also creates a bin (or Scripts on Windows) subdirectory containing a copy or symlink of the Python executable (as appropriate for the platform or arguments used at environment creation time). It also creates a lib/pythonX.Y/site-packages subdirectory (on Windows, this is Libsite-packages). If an existing directory is specified, it will be re-used.

在 3.5 版本发生变更: 现在推荐使用 venv 来创建虚拟环境。

Deprecated since version 3.6, removed in version 3.8: pyvenv 是针对 Python 3.3 和 3.4 创建虚拟环境的推荐工具,并在 3.5 中被直接执行 venv 的方式所取代。

On Windows, invoke the venv command as follows:

  1. PS> python -m venv C:\path\to\new\virtual\environment

本命令如果以 -h 参数运行,将显示可用的选项:

  1. usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
  2. [--upgrade] [--without-pip] [--prompt PROMPT] [--upgrade-deps]
  3. [--without-scm-ignore-files]
  4. ENV_DIR [ENV_DIR ...]
  5. Creates virtual Python environments in one or more target directories.
  6. positional arguments:
  7. ENV_DIR A directory to create the environment in.
  8. options:
  9. -h, --help show this help message and exit
  10. --system-site-packages
  11. Give the virtual environment access to the system
  12. site-packages dir.
  13. --symlinks Try to use symlinks rather than copies, when
  14. symlinks are not the default for the platform.
  15. --copies Try to use copies rather than symlinks, even when
  16. symlinks are the default for the platform.
  17. --clear Delete the contents of the environment directory
  18. if it already exists, before environment creation.
  19. --upgrade Upgrade the environment directory to use this
  20. version of Python, assuming Python has been
  21. upgraded in-place.
  22. --without-pip Skips installing or upgrading pip in the virtual
  23. environment (pip is bootstrapped by default)
  24. --prompt PROMPT Provides an alternative prompt prefix for this
  25. environment.
  26. --upgrade-deps Upgrade core dependencies (pip) to the latest
  27. version in PyPI
  28. --without-scm-ignore-files
  29. Skips adding SCM ignore files to the environment
  30. directory (Git is supported by default).
  31. Once an environment has been created, you may wish to activate it, e.g. by
  32. sourcing an activate script in its bin directory.

在 3.4 版本发生变更: Installs pip by default, added the --without-pip and --copies options.

在 3.4 版本发生变更: 在早期版本中,如果目标目录已存在,将引发错误,除非使用了 --clear--upgrade 选项。

在 3.9 版本发生变更: Add --upgrade-deps option to upgrade pip + setuptools to the latest on PyPI.

在 3.12 版本发生变更: setuptools 不再是核心的 venv 依赖项。

在 3.13 版本发生变更: Added the --without-scm-ignore-files option.

在 3.13 版本发生变更: venv now creates a .gitignore file for Git by default.

备注

虽然 Windows 支持符号链接,但不推荐使用它们。特别注意,在文件资源管理器中双击 python.exe 将立即解析符号链接,并忽略虚拟环境。

备注

在 Microsoft Windows 上,为了启用 Activate.ps1 脚本,可能需要修改用户的执行策略。可以运行以下 PowerShell 命令来执行此操作:

  1. PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

参阅 About Execution Policies 以获取更多信息。

The created pyvenv.cfg file also includes the include-system-site-packages key, set to true if venv is run with the --system-site-packages option, false otherwise.

除非采用 --without-pip 选项,否则将会调用 ensurepippip 引导到虚拟环境中。

可以向 venv 传入多个路径,此时将根据给定的选项,在所给的每个路径上创建相同的虚拟环境。

虚拟环境是如何实现的

当运行虚拟环境中的 Python 解释器时,sys.prefixsys.exec_prefix 将指向该虚拟环境的相应目录,而 sys.base_prefixsys.base_exec_prefix 将指向用于创建该虚拟环境的基础 Python 的相应目录。 只需检测 sys.prefix != sys.base_prefix 就足以确定当前解释器是否运行于虚拟环境中。

一个虚拟环境可以通过位于其二进制文件目录目录 (在 POSIX 上为 bin;在 Windows 上为 Scripts ) 中的脚本来“激活”。 这会将该目录添加到你的 PATH,这样运行 python 时就会发起调用虚拟环境的 Python 解释器,从而可以运行该目录中安装的脚本而不必使用其完整路径。 激活脚本的发起调用方式是平台专属的 (_<venv>_ 必须用包含虚拟环境目录的路径来替换):

平台

Shell

用于激活虚拟环境的命令

POSIX

bash/zsh

$ source <venv>/bin/activate

fish

$ source <venv>/bin/activate.fish

csh/tcsh

$ source <venv>/bin/activate.csh

pwsh

$ <venv>/bin/Activate.ps1

Windows

cmd.exe

C:\> <venv>\Scripts\activate.bat

PowerShell

PS C:\> <venv>\Scripts\Activate.ps1

Added in version 3.4: fishcsh 激活脚本。

Added in version 3.8: 在 POSIX 上安装 PowerShell 激活脚本,以支持 PowerShell Core。

激活一个虚拟环境的操作 不是必需的,因为你完全可以在发起调用 Python 时指明特定虚拟环境的 Python 解释器的完整路径。 更进一步地说,安装在虚拟环境中的所有脚本也都可以在不激活该虚拟环境的情况下运行。

In order to achieve this, scripts installed into virtual environments have a “shebang” line which points to the environment’s Python interpreter, #!/_<path-to-venv>_/bin/python. This means that the script will run with that interpreter regardless of the value of PATH. On Windows, “shebang” line processing is supported if you have the 适用于Windows的Python启动器 installed. Thus, double-clicking an installed script in a Windows Explorer window should run it with the correct interpreter without the environment needing to be activated or on the PATH.

当一个虚拟环境已被激活时,VIRTUAL_ENV 环境变量会被设为该虚拟环境的路径。 由于使用虚拟环境并不需要显式地激活它,因此 VIRTUAL_ENV 并不能被用来可靠地确定是否正在使用虚拟环境。

警告

因为安装在虚拟环境中的脚本不应要求必须激活该虚拟环境,所以它们的“井号叹号”行会包含虚拟环境的绝对路径。 因为这一点,所以虚拟环境在通常情况下都是不可移植的。 你应当保证提供重建一个虚拟环境的简便方式(举例来说,如果你准备了需求文件 requirements.txt,则可以使用虚拟环境的 pip 执行 pip install -r requirements.txt 来安装虚拟环境所需的所有软件包)。 如果出于某种原因你需要将虚拟环境移动到一个新的位置,则你应当在目标位置上重建它并删除旧位置上的虚拟环境。 如果出于某种原因你移动了一个虚拟环境的上级目录,你也应当在新位置上重建该虚拟环境。 否则,安装到该虚拟环境的软件包可能无法正常工作。

你可以通过在 shell 中输入 deactivate 来取消激活一个虚拟环境。 取消激活的实现机制依赖于具体平台并且属于内部实现细节(通常,将会使用一个脚本或者 shell 函数)。

API

上述的高级方法使用了一个简单的 API,该 API 提供了一种机制,第三方虚拟环境创建者可以根据其需求自定义环境创建过程,该 API 为 EnvBuilder 类。

class venv.EnvBuilder(system_site_packages=False, clear=False, symlinks=False, upgrade=False, with_pip=False, prompt=None, upgrade_deps=False, *, scm_ignore_files=frozenset())

EnvBuilder 类在实例化时接受以下关键字参数:

  • system_site_packages — a boolean value indicating that the system Python site-packages should be available to the environment (defaults to False).

  • clear — a boolean value which, if true, will delete the contents of any existing target directory, before creating the environment.

  • symlinks — a boolean value indicating whether to attempt to symlink the Python binary rather than copying.

  • upgrade — a boolean value which, if true, will upgrade an existing environment with the running Python - for use when that Python has been upgraded in-place (defaults to False).

  • with_pip — a boolean value which, if true, ensures pip is installed in the virtual environment. This uses ensurepip with the --default-pip option.

  • prompt — a string to be used after virtual environment is activated (defaults to None which means directory name of the environment would be used). If the special string "." is provided, the basename of the current directory is used as the prompt.

  • upgrade_deps — Update the base venv modules to the latest on PyPI

  • scm_ignore_files — Create ignore files based for the specified source control managers (SCM) in the iterable. Support is defined by having a method named create_{scm}_ignore_file. The only value supported by default is "git" via create_git_ignore_file().

在 3.4 版本发生变更: 添加 with_pip 参数

在 3.6 版本发生变更: 添加 prompt 参数

在 3.9 版本发生变更: 添加 upgrade_deps 参数

在 3.13 版本发生变更: 增加了 scm_ignore_files 形参

EnvBuilder may be used as a base class.

  • create(env_dir)

    指定要建立虚拟环境的目标目录(绝对路径或相对于当前路径)来创建虚拟环境。create 方法将在指定目录中创建环境,或者引发对应的异常。

    EnvBuilder 类的 create 方法定义了可用于定制子类的钩子:

    1. def create(self, env_dir):
    2. """
    3. 在一个目录中创建虚拟的 Python 环境。
    4. env_dir 是用于创建环境的目标目录。
    5. """
    6. env_dir = os.path.abspath(env_dir)
    7. context = self.ensure_directories(env_dir)
    8. self.create_configuration(context)
    9. self.setup_python(context)
    10. self.setup_scripts(context)
    11. self.post_setup(context)

    每个方法 ensure_directories(), create_configuration(), setup_python(), setup_scripts()post_setup() 都可以被重写。

  • ensure_directories(env_dir)

    创建虚拟环境目录及尚不存在的所有必要的子目录,并返回一个上下文对象。 这个上下文对象被用于存放供其他方法使用的属性(如路径等)。 如果 EnvBuilder 是附带参数 clear=True 创建的,则虚拟环境的内容将被清除并将重新创建所有必要的子目录。

    返回的上下文对象是一个具有以下属性的 types.SimpleNamespace:

    • env_dir - 虚拟环境的位置。 将被用作激活脚本中的 __VENV_DIR__ (参见 install_scripts())。

    • env_name - 虚拟环境的名称。 将被用作激活脚本中的 __VENV_NAME__ (参见 install_scripts())。

    • prompt - 激活脚本要使用的提示符。 将被用作激活脚本中的 __VENV_PROMPT__ (参见 install_scripts())。

    • executable - 虚拟环境所使用的下层 Python 可执行文件。 这会将基于另一个虚拟环境创建虚拟环境的情况也纳入考虑。

    • inc_path - 虚拟环境的 include 路径。

    • lib_path - 虚拟环境的 purelib 路径。

    • bin_path - 虚拟环境的 script 路径。

    • bin_name - 相对于虚拟环境位置的 script 路径名称。 用于激活脚本中的 __VENV_BIN_NAME__ (参见 install_scripts())。

    • env_exe - 虚拟环境中 Python 解释器的名称。 用于激活脚本中的 __VENV_PYTHON__ (参见 install_scripts())。

    • env_exec_cmd - Python 解释器的名称,会将文件系统重定向也纳入考虑。 这可被用于在虚拟环境中运行 Python。

    在 3.11 版本发生变更: venv sysconfig installation scheme 被用于构造所创建目录的路径。

    在 3.12 版本发生变更: 将属性 lib_path 添加到上下文中,并将上下文对象写入文档。

  • create_configuration(context)

    在环境中创建 pyvenv.cfg 配置文件。

  • setup_python(context)

    在环境中创建 Python 可执行文件的拷贝或符号链接。在 POSIX 系统上,如果给定了可执行文件 python3.x,将创建指向该可执行文件的 pythonpython3 符号链接,除非相同名称的文件已经存在。

  • setup_scripts(context)

    将适用于平台的激活脚本安装到虚拟环境中。

  • upgrade_dependencies(context)

    Upgrades the core venv dependency packages (currently pip) in the environment. This is done by shelling out to the pip executable in the environment.

    Added in version 3.9.

    在 3.12 版本发生变更: setuptools is no longer a core venv dependency.

  • post_setup(context)

    占位方法,可以在第三方实现中重写,用于在虚拟环境中预安装软件包,或是其他创建后要执行的步骤。

  • install_scripts(context, path)

    This method can be called from setup_scripts() or post_setup() in subclasses to assist in installing custom scripts into the virtual environment.

    path is the path to a directory that should contain subdirectories common, posix, nt; each containing scripts destined for the bin directory in the environment. The contents of common and the directory corresponding to os.name are copied after some text replacement of placeholders:

    • __VENV_DIR__ 会被替换为环境目录的绝对路径。

    • __VENV_NAME__ 会被替换为环境名称(环境目录的最后一个字段)。

    • __VENV_PROMPT__ 会被替换为提示符(用括号括起来的环境名称紧跟着一个空格)。

    • __VENV_BIN_NAME__ 会被替换为 bin 目录的名称( binScripts )。

    • __VENV_PYTHON__ 会被替换为环境可执行文件的绝对路径。

    允许目录已存在(用于升级现有环境时)。

  • create_git_ignore_file(context)

    Creates a .gitignore file within the virtual environment that causes the entire directory to be ignored by the Git source control manager.

    Added in version 3.13.

在 3.7.2 版本发生变更: Windows 现在为 python[w].exe 使用重定向脚本,而不是复制实际的二进制文件。仅在 3.7.2 中,除非运行的是源码树中的构建,否则 setup_python() 不会执行任何操作。

在 3.7.3 版本发生变更: Windows 将重定向脚本复制为 setup_python() 的一部分而非 setup_scripts()。在 3.7.2 中不是这种情况。使用符号链接时,将链接至原始可执行文件。

有一个方便实用的模块级别的函数:

venv.create(env_dir, system_site_packages=False, clear=False, symlinks=False, with_pip=False, prompt=None, upgrade_deps=False, *, scm_ignore_files=frozenset())

通过关键词参数来创建一个 EnvBuilder,并且使用 env_dir 参数来调用它的 create() 方法。

Added in version 3.3.

在 3.4 版本发生变更: Added the with_pip parameter

在 3.6 版本发生变更: Added the prompt parameter

在 3.9 版本发生变更: Added the upgrade_deps parameter

在 3.13 版本发生变更: Added the scm_ignore_files parameter

一个扩展 EnvBuilder 的例子

下面的脚本展示了如何通过实现一个子类来扩展 EnvBuilder。这个子类会安装 setuptools 和 pip 到被创建的虚拟环境中。

  1. import os
  2. import os.path
  3. from subprocess import Popen, PIPE
  4. import sys
  5. from threading import Thread
  6. from urllib.parse import urlparse
  7. from urllib.request import urlretrieve
  8. import venv
  9. class ExtendedEnvBuilder(venv.EnvBuilder):
  10. """
  11. This builder installs setuptools and pip so that you can pip or
  12. easy_install other packages into the created virtual environment.
  13. :param nodist: If true, setuptools and pip are not installed into the
  14. created virtual environment.
  15. :param nopip: If true, pip is not installed into the created
  16. virtual environment.
  17. :param progress: If setuptools or pip are installed, the progress of the
  18. installation can be monitored by passing a progress
  19. callable. If specified, it is called with two
  20. arguments: a string indicating some progress, and a
  21. context indicating where the string is coming from.
  22. The context argument can have one of three values:
  23. 'main', indicating that it is called from virtualize()
  24. itself, and 'stdout' and 'stderr', which are obtained
  25. by reading lines from the output streams of a subprocess
  26. which is used to install the app.
  27. If a callable is not specified, default progress
  28. information is output to sys.stderr.
  29. """
  30. def __init__(self, *args, **kwargs):
  31. self.nodist = kwargs.pop('nodist', False)
  32. self.nopip = kwargs.pop('nopip', False)
  33. self.progress = kwargs.pop('progress', None)
  34. self.verbose = kwargs.pop('verbose', False)
  35. super().__init__(*args, **kwargs)
  36. def post_setup(self, context):
  37. """
  38. Set up any packages which need to be pre-installed into the
  39. virtual environment being created.
  40. :param context: The information for the virtual environment
  41. creation request being processed.
  42. """
  43. os.environ['VIRTUAL_ENV'] = context.env_dir
  44. if not self.nodist:
  45. self.install_setuptools(context)
  46. # Can't install pip without setuptools
  47. if not self.nopip and not self.nodist:
  48. self.install_pip(context)
  49. def reader(self, stream, context):
  50. """
  51. Read lines from a subprocess' output stream and either pass to a progress
  52. callable (if specified) or write progress information to sys.stderr.
  53. """
  54. progress = self.progress
  55. while True:
  56. s = stream.readline()
  57. if not s:
  58. break
  59. if progress is not None:
  60. progress(s, context)
  61. else:
  62. if not self.verbose:
  63. sys.stderr.write('.')
  64. else:
  65. sys.stderr.write(s.decode('utf-8'))
  66. sys.stderr.flush()
  67. stream.close()
  68. def install_script(self, context, name, url):
  69. _, _, path, _, _, _ = urlparse(url)
  70. fn = os.path.split(path)[-1]
  71. binpath = context.bin_path
  72. distpath = os.path.join(binpath, fn)
  73. # Download script into the virtual environment's binaries folder
  74. urlretrieve(url, distpath)
  75. progress = self.progress
  76. if self.verbose:
  77. term = '\n'
  78. else:
  79. term = ''
  80. if progress is not None:
  81. progress('Installing %s ...%s' % (name, term), 'main')
  82. else:
  83. sys.stderr.write('Installing %s ...%s' % (name, term))
  84. sys.stderr.flush()
  85. # Install in the virtual environment
  86. args = [context.env_exe, fn]
  87. p = Popen(args, stdout=PIPE, stderr=PIPE, cwd=binpath)
  88. t1 = Thread(target=self.reader, args=(p.stdout, 'stdout'))
  89. t1.start()
  90. t2 = Thread(target=self.reader, args=(p.stderr, 'stderr'))
  91. t2.start()
  92. p.wait()
  93. t1.join()
  94. t2.join()
  95. if progress is not None:
  96. progress('done.', 'main')
  97. else:
  98. sys.stderr.write('done.\n')
  99. # Clean up - no longer needed
  100. os.unlink(distpath)
  101. def install_setuptools(self, context):
  102. """
  103. Install setuptools in the virtual environment.
  104. :param context: The information for the virtual environment
  105. creation request being processed.
  106. """
  107. url = "https://bootstrap.pypa.io/ez_setup.py"
  108. self.install_script(context, 'setuptools', url)
  109. # clear up the setuptools archive which gets downloaded
  110. pred = lambda o: o.startswith('setuptools-') and o.endswith('.tar.gz')
  111. files = filter(pred, os.listdir(context.bin_path))
  112. for f in files:
  113. f = os.path.join(context.bin_path, f)
  114. os.unlink(f)
  115. def install_pip(self, context):
  116. """
  117. Install pip in the virtual environment.
  118. :param context: The information for the virtual environment
  119. creation request being processed.
  120. """
  121. url = 'https://bootstrap.pypa.io/get-pip.py'
  122. self.install_script(context, 'pip', url)
  123. def main(args=None):
  124. import argparse
  125. parser = argparse.ArgumentParser(prog=__name__,
  126. description='Creates virtual Python '
  127. 'environments in one or '
  128. 'more target '
  129. 'directories.')
  130. parser.add_argument('dirs', metavar='ENV_DIR', nargs='+',
  131. help='A directory in which to create the '
  132. 'virtual environment.')
  133. parser.add_argument('--no-setuptools', default=False,
  134. action='store_true', dest='nodist',
  135. help="Don't install setuptools or pip in the "
  136. "virtual environment.")
  137. parser.add_argument('--no-pip', default=False,
  138. action='store_true', dest='nopip',
  139. help="Don't install pip in the virtual "
  140. "environment.")
  141. parser.add_argument('--system-site-packages', default=False,
  142. action='store_true', dest='system_site',
  143. help='Give the virtual environment access to the '
  144. 'system site-packages dir.')
  145. if os.name == 'nt':
  146. use_symlinks = False
  147. else:
  148. use_symlinks = True
  149. parser.add_argument('--symlinks', default=use_symlinks,
  150. action='store_true', dest='symlinks',
  151. help='Try to use symlinks rather than copies, '
  152. 'when symlinks are not the default for '
  153. 'the platform.')
  154. parser.add_argument('--clear', default=False, action='store_true',
  155. dest='clear', help='Delete the contents of the '
  156. 'virtual environment '
  157. 'directory if it already '
  158. 'exists, before virtual '
  159. 'environment creation.')
  160. parser.add_argument('--upgrade', default=False, action='store_true',
  161. dest='upgrade', help='Upgrade the virtual '
  162. 'environment directory to '
  163. 'use this version of '
  164. 'Python, assuming Python '
  165. 'has been upgraded '
  166. 'in-place.')
  167. parser.add_argument('--verbose', default=False, action='store_true',
  168. dest='verbose', help='Display the output '
  169. 'from the scripts which '
  170. 'install setuptools and pip.')
  171. options = parser.parse_args(args)
  172. if options.upgrade and options.clear:
  173. raise ValueError('you cannot supply --upgrade and --clear together.')
  174. builder = ExtendedEnvBuilder(system_site_packages=options.system_site,
  175. clear=options.clear,
  176. symlinks=options.symlinks,
  177. upgrade=options.upgrade,
  178. nodist=options.nodist,
  179. nopip=options.nopip,
  180. verbose=options.verbose)
  181. for d in options.dirs:
  182. builder.create(d)
  183. if __name__ == '__main__':
  184. rc = 1
  185. try:
  186. main()
  187. rc = 0
  188. except Exception as e:
  189. print('Error: %s' % e, file=sys.stderr)
  190. sys.exit(rc)

这个脚本同样可以 在线下载