making a venv in python2 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 virtual environment python 3
#create the venv
python -m venv name_virtual_env
#or
python3 -m venv name_virtual_env
#activate venv
#linux:
source name_virtual_env/bin/activate
#windows
name_virtual_env\Scripts\activate