带有调试结果的烧瓶会显示“地址已在使用中”

时间:2019-05-08 16:44:16

标签: python windows flask

以下代码运行良好(在Jupyter笔记本中):

from flask import Flask
app = Flask(__name__)
#app.config["DEBUG"] = True

@app.route("/")

def hello():
    return "Hello World!"

if __name__ == "__main__":
    app.run()

取消注释app.config["DEBUG"] = True并运行会导致错误:Address in use。我尝试更改端口,但没有任何运气。

更新:我在Windows 7上

0 个答案:

没有答案