how to check virtualenv code example
Example 1: venv
python -m venv c:\path\to\myenv
Example 2: virtual env python 2
virtualenv -p C:\Python27\python.exe venv
.\venv\Scripts\activate
python -m venv c:\path\to\myenv
virtualenv -p C:\Python27\python.exe venv
.\venv\Scripts\activate