-
Install Git from https://git-scm.com/downloads. Current version - 2.16.3
-
macOS
- Open Term and run the following commands:
git clone git@github.com:miguelgrinberg/flask-pycon2015.git
cd flask-pycon2015
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
-
Windows
-
Install Python 3 (current version 3.6.5) from https://www.python.org/downloads/release/python-365/
NOTE: Verify python and pip in your PATH !!!! -
Open Command Prompt and run the following commands:
-
pip install virtualenv
git clone git@github.com:miguelgrinberg/flask-pycon2015.git
cd flask-pycon2015
virtualenv venv
venv\Scripts\activate
pip install -r requirements.txt