venv
venv — Creation of virtual environments
New in version 3.3.
Source code: Lib/venv/
The venv
module provides support for creating lightweight “virtual environments” with their own site directories, optionally isolated from system site directories. Each virtual environment has its own Python binary (allowing creation of environments with various Python versions) and can have its own independent set of installed Python packages in its site directories.
See 登录查看完整内容