Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 481 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 481 Bytes

Writing your first web app using Python and Flask

Getting Started

Clone this repo!

git clone git://github.com/danni/linux-conf-au-flask-tute

Create a local Python environment, this allows you to choose exactly what is and isn't included, and what version, in the Python stack for your application.

virtualenv python_env
. python_env/bin/activate

Install Flask

pip install -r requirements.txt