venv

Stdlib — MiscPython 3.3+Beginner

Create lightweight virtual environments

Quick Info

Documentation
Official Docs
Python Version
3.3+
Dependencies
None — Python Standard Library
Install
Included with Python

Learn by Difficulty

Quick Example

python
import venv

print(f"Module: venv")
print(f"Contents: {dir(venv)[:10]}")

The venv module is part of Python's standard library. Create lightweight virtual environments.

Try in Playground

Tags

ecosystemvirtual-environmentisolationstdlib

Related Items