Create a virtual environment.
$ virtualenv venv
Activate the created environment.
$ ./venv/bin/activate
Run the following command to install pip packages.
$ pip install -r requirements.txt
Finally run the following command to starting application.
$ flask run