If you want to you can think of an environment as a VM (but it isn't)
# LINUX
source thenewenvironment/bin/activate
(virtualenv_name)$
# WINDOWS
cd ~/code/py_vm
Scripts\activatedeactivateA directory will be created where you are in the library. cd here when using it.
This is where Python packages will be installed
mkdir ~/code/py_vm
cd ~/code/py_vm
virtualenv thenewenvironmentvirtualenv -p /usr/bin/python3 thenewenvironment
# OR
virtualenv -p /usr/bin/python2.7 thenewenvironmentpip3 install virtualenvvirtualenv --version