如何使用“ venv”更新Python虚拟环境以使用较新版本的Python?

时间:2019-10-25 17:10:53

标签: python python-3.x python-venv

我最近在安装了Python 3.8.0以及Python 3.7.4。

我有一些虚拟环境(使用python -m venv <directory>基于v3.7.4创建。如何更新它们以使用v3.8.0?

我需要创建一个新的虚拟环境并重新安装依赖项,脚本等吗?


注意:现有一些常见问答(such as this)处理较旧的virtualenv软件包/工具。我要特别询问的是新的内置venv模块,该模块是v3.3以来的Python内置标准,与virtualenv有一些区别。

1 个答案:

答案 0 :(得分:2)

我猜您正在寻找的是--upgrade参数。

python -m venv --help
usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
            [--upgrade] [--without-pip] [--prompt PROMPT]
            ENV_DIR [ENV_DIR ...]

Creates virtual Python environments in one or more target directories.

positional arguments:
  ENV_DIR               A directory to create the environment in.

optional arguments:
  -h, --help            show this help message and exit
  --system-site-packages
                        Give the virtual environment access to the system
                        site-packages dir.
  --symlinks            Try to use symlinks rather than copies, when symlinks
                        are not the default for the platform.
  --copies              Try to use copies rather than symlinks, even when
                        symlinks are the default for the platform.
  --clear               Delete the contents of the environment directory if it
                        already exists, before environment creation.
  --upgrade             Upgrade the environment directory to use this version
                        of Python, assuming Python has been upgraded in-place.
  --without-pip         Skips installing or upgrading pip in the virtual
                        environment (pip is bootstrapped by default)
  --prompt PROMPT       Provides an alternative prompt prefix for this
                        environment.

您需要使用目标python版本运行它,例如在这种情况下:

python3.8 -m venv --upgrade <dir_name>

假设python3.8是python 3.8.0可执行文件的名称。