python virtual function code example
Example 1: python virtual environment
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
Example 2: virtual environment python
py -m venv env ## For windows and Python 3
.\env\Scripts\activate
deactivate