how to create venv in python3 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: create a virtual environment python 3
python3 -m venv /path/to/new/virtual/environment
Example 4: 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