setting up venv code example
Example 1: how to create a python venv
python3 -m venv tutorial-env
Example 2: create a venv
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
Example 3: 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
Example 4: how to make virtual environment
virtualenv mypython
Example 5: create a venv
python3 -m venv /path/to/new/virtual/environment