how to activate a virtual environment on windws 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 environment python windows 10
python3 -m venv venv
Example 3: start python virtual
activate venv