python venv start code example
Example 1: create a venv
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
Example 2: create a virtualenv python3
py -m venv env
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
py -m venv env