Create a virtual environment.
$ virtualenv venvActivate the created environment.
$ ./venv/bin/activateRun the following command to install pip packages.
$ pip install -r requirements.txtFinally run the following command to starting application.
$ flask run