create a virutal enviroment python 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 workon virtual environment in linux
# If any of the other dont work try
<env name>\bin\activate