Python Flask installation


There is nothing special. You install flask as you'd install any other Python package. Using some kind of virtual envrionment is recommended here too.

virtualenv venv -p python3
source venv/bin/activate

pip install flask