@
THESDZ 在当前目录创建一个叫 env 的文件夹,爱你在这个文件夹里面初始化虚拟环境。更普遍的写法是 python3 -m venv <path_to>/env,明确制定 env 的路径。
如果使用 pyenv 的插件 pyenv-virtualenv 的话,创建管理环境更加的方便。根据后者文档:
(关于 Python 的 virtualenv 和 venv 模块)
There is a venv module available for CPython 3.3 and newer. It provides an executable module venv which is the successor of virtualenv and distributed by default.
pyenv-virtualenv uses python -m venv if it is available and the virtualenv command is not available.
(关于 conda )
If conda is available, pyenv virtualenv will use it to create environment by conda create.
可见 pyenv-virtualenv 会在台面下使用 python 和 conda 各自的命令创建虚拟环境。台面上使用的时候,只需要用 pyenv 的命令就行了,方便。还有很多其他方便的地方和高级用法,比较推荐 pyenv 。