Upcoming Software center for SugarLabs (ASLO V3)
pip install virtualenv
virtualenv ~/envs/flask-dev
source ~/envs/flask-dev/bin/activate
pip install -r requirements.txt
cd /tmp
wget http://download.redis.io/releases/redis-stable.tar.gz
tar xzf redis-stable.tar.gz
make
make test
sudo make install
For a more comprehensive guide follow this Tutorial from DigitalOcean
Make sure redis is running by logging in redis-cli
python app.py
will start Flask server listening on all interfaces 0.0.0.0
and port 5000