04-01 pip install flask & flask-sqlalchemy

01

install flask and flask-sqlalchemy ** make sure you are in venv and correct directory

source ./venv/bin/activate
pip install flask
pip install flask-sqlalchemy

flask-sqlalchemy is a 'ORM' 'Object-realtional mapping'

02

freeze will output all the dependences from venv so other can download themselves with script

pip freeze > requirements.txt

requirements.txt is just a name chosen, can be anything