gpt4 book ai didi

python - 从 IPython 运行 Flask 引发 SystemExit

转载 作者:太空宇宙 更新时间:2023-11-03 12:26:29 28 4
gpt4 key购买 nike

我正在尝试从 IPython 运行我的 Flask 应用程序。但是,它因 SystemExit 错误而失败。

from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
return 'Hello, World!'

if __name__ == '__main__':
app.run(debug=True)

用 IPython 运行它会显示以下错误:

SystemExit                                Traceback (most recent call last)
<ipython-input-35-bfd7690b11d8> in <module>()
17
18 if __name__ == '__main__':
---> 19 app.run(debug = True)

/Users/ravinderbhatia/anaconda/lib/python2.7/site-packages/flask/app.pyc in run(self, host, port, debug, **options)
770 options.setdefault('use_debugger', self.debug)
771 try:
--> 772 run_simple(host, port, self, **options)
773 finally:
774 # reset the first request information if the development server

/Users/ravinderbhatia/anaconda/lib/python2.7/site-packages/werkzeug/serving.py in run_simple(hostname, port, application, use_reloader, use_debugger, use_evalex, extra_files, reloader_interval, reloader_type, threaded, processes, request_handler, static_files, passthrough_errors, ssl_context)
687 from ._reloader import run_with_reloader
688 run_with_reloader(inner, extra_files, reloader_interval,
--> 689 reloader_type)
690 else:
691 inner()

/Users/ravinderbhatia/anaconda/lib/python2.7/site-packages/werkzeug/_reloader.py in run_with_reloader(main_func, extra_files, interval, reloader_type)
248 reloader.run()
249 else:
--> 250 sys.exit(reloader.restart_with_reloader())
251 except KeyboardInterrupt:
252 pass

SystemExit: 1

最佳答案

您正在使用 Jupyter Notebook 或 IPython 来运行开发服务器。您还启用了 Debug模式,默认情况下会启用重新加载程序。重新加载器尝试重新启动 IPython 无法处理的进程。

最好使用flask 命令来运行开发服务器。

export FLASK_APP=my_app.py
export FLASK_DEBUG=1
flask run

如果您仍想使用 app.run,则使用普通的 python 解释器来运行应用程序,不再推荐这样做。

python my_app.py

如果你想从 Jupyter 调用 app.run,或者禁用重新加载器。

app.run(debug=True, use_reloader=False)

在 Visual Studio Code 中,要在启动器中设置 flask run(而不是启动 python),请在 .vscode/launch.json 中使用此配置:

    {
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"env": { "FLASK_APP": "my_app.py", "FLASK_ENV": "development" },
"args": ["run"],
"args_": ["run", "--no-debugger"],
"jinja": true
}

关于python - 从 IPython 运行 Flask 引发 SystemExit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49456385/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com