making pip venv code example
Example 1: how to create a python venv
python3 -m venv tutorial-env
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
python3 -m venv tutorial-env
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory