RuntimeError: The Werkzeug web server is not designed to run in production

琴俊良
2023-12-01

项目场景:

我使用flask开发一个简易的实时信息推荐,然后有一个报错处理了很久。


问题描述

报错信息如下:

raise RuntimeError('The Werkzeug web server is not '
RuntimeError: The Werkzeug web server is not designed to run in production. Pass allow_unsafe_werkzeug=True to the run() method to disable this error.

原因分析:

原因是Flask-SocketIO=5.3.1版本过高,将其调整为5.2.0就可以了。
我使用版本对应如下:

Flask==2.2.2
Flask-SocketIO==5.2.0
MarkupSafe==2.1.1
Werkzeug==2.2.2

 类似资料:

相关阅读

相关文章

相关问答