From d7508459b9acd37dfd2e64996883871993a49e8d Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 29 Jun 2013 18:29:07 -0700 Subject: [PATCH] included missed dependencies in README file --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a33e35..1752111 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,12 @@ A decently featured microblogging web application written in Python and Flask th Installation ------------ -The tutorial referenced above explains how to setup a virtual environment with all the required modules. As a convenience, the `setup.py` script will create this virtual environment for you. You can run this script again to refresh any missing modules. +The tutorial referenced above explains how to setup a virtual environment with all the required modules. As a convenience, the `setup.py` script will create this virtual environment for you. You can run this script again to refresh any missing modules. Note that to be able to run this script you have to have the following packages installed: +- Python 2.7 +- Python development package (`python-dev` for most Linux distributions) +- git + The sqlite database must also be created before the application can run, and the `db_create.py` script takes care of that. See the [Database tutorial](http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iv-database) for the details. Running