python create virtualenv 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: pip install virtualenv windows
python3 -m venv env
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
python3 -m venv env