Flask, Windows, IIS, Plotly-Dash. Error Occured While reading WSGI handler
问题 I'm hoping you can help me with errors that I'm getting with Flask in an attempt to deploy plotly-dash on a Windows server. I've set up Flask using the following guide, verbatim, except the location of my website within the wwwroot folder: Flask on IIS When I use the most basic of apps, it works fine, an example being the following code: from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello from FastCGI via IIS!" if __name__ == "__main__": app.run() But then