how to set up virtual environment in terminal 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 make a venv python
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory