how to create a virtual environment in python in windows code example

Example 1: create a venv

# Create the virtual environment.
python -m venv venv

# Activate the env.
venv\Scripts\activate.bat

Example 2: how to use virtual environment python

python3 -m venv env

Example 3: how to make virtual environment

virtualenv mypython

Example 4: python3 -m venv venv

$userenv = [System.Environment]::GetEnvironmentVariable("Path", "User")

[System.Environment]::SetEnvironmentVariable("PATH", $userenv + ";C:\Users\Admin\Ubuntu", "User")