flaskPractice Python Version > python --version python 3.7.3 Create Virtual Environment Install virtualenv using > pip install virtualenv Create virtualenv called "venv" > virutalenv venv Activate venv > venv/Scripts/activate (venv) > Install Dependecies > pip install -r requirements.txt