python start virtualenve code example
Example 1: create a virtualenv python
pip install virtualenv
cd projectfolder #go to project folder
virtualenv projectname #create the folder projectname
source projectname/bin/activate
Example 2: start virtualenv with python version
python3 -m venv <myenvname>