问题描述
要使用 virtualenv
创建虚拟环境,您可以像这样指定 Python 版本和点版本:
To create a virtual environment using virtualenv
you can specify the Python release and point version like so:
virtualenv --python=python3.6 .venv
如何使用 Python3 的 venv
模块(如 python3 -m venv .newvenv
)实现这一点?根据文档 推荐使用 venv
创建虚拟环境的方法,但我没有看到如何选择具有特定 Python 版本的虚拟环境.
How can I achieve this using Python3's venv
module (as in python3 -m venv .newvenv
)? According to the documentation using venv
is the recommended way to create virtual environments but I didn't see how I can choose a virtual environement with a specific Python version.
推荐答案
运行 venv
与您想用于新虚拟环境的任何 Python 安装.例如,如果您使用 python3.6
运行 Python 3.6 安装,则
Run venv
with whatever Python installation you want to use for the new virtual environment. For example, if you would run your Python 3.6 installation with python3.6
, then
python3.6 -m venv whatever
将是您创建 Python 3.6 虚拟环境的方式.
would be how you create a Python 3.6 virtual environment.
这篇关于python3 -m venv:如何指定 Python 点发布/版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!