from flask import Flask, render_template app = Flask(name)
@app.route("/") def index(): return render_template("index.html")
if name == "main": app.run()
pip freeze
在输出中查看是否包含Flask。
from flask import Flask, render_template app = Flask(name, template_folder='templates')
if name == "main": app.run(host='0.0.0.0', port=5000)
通过这些解决方法,您应该能够解决本地主机上Flask无法加载index.html页面的问题。