Flask Interactive Debugger Broken
I'm trying to figure out why the Flask interactive debugger isn't working. My template application is barebones, with a single error: from flask import Flask app = Flask(__name__)
Solution 1:
The solution was that none of the static files provided by the debugger as part of the Werkzeug suite were being found. Simply uninstalling/reinstalling Flask and Werkzeug fixed this issue. Thanks for everyone who answered!
Solution 2:
you're running on 0.0.0.0. take out the last period
Post a Comment for "Flask Interactive Debugger Broken"