Skip to content Skip to sidebar Skip to footer

Flask Reload Module On Windows

I am on Windows, using python 2.7, flask installed with pip. I am trying to get flask reload my python module after source code change. I did SET FLASK_APP=backend.py set FLASK_DEB

Solution 1:

Fixed in werkzeug 0.11.13 as mentioned by snakecharmerb. After

pip install werkzeug --upgrade

reload is working as expected.

Post a Comment for "Flask Reload Module On Windows"