create virtual environment with python 3.5 code example
Example 1: python venv
python3 -m venv /path/to/new/virtual/environment
Example 2: venv
python -m venv c:\path\to\myenv
Example 3: activate venv
venv\Scripts\activate.bat
python3 -m venv /path/to/new/virtual/environment
python -m venv c:\path\to\myenv
venv\Scripts\activate.bat