我是靠谱客的博主 彩色酒窝,最近开发中收集的这篇文章主要介绍【Flask】WARNING: This is a development server. Do not use it in a production deployment. falsk WSGI,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
我是一个甜甜的大橙子????,欢迎关注✉️!
我相信技术的力量????
努力将所学分享给大家????
你的点赞❤️分享????收藏????就是对我最大的鼓励!
在用flask进行开发的时候,突然看到有如下警告
* Serving Flask app "5star" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: on
解决问题的关键就在于
Use a production WSGI server instead.
很快搜到了解决方案:
if __name__ == '__main__':
server = make_server('127.0.0.1', 5000, app)
server.serve_forever()
app.run()
最后
以上就是彩色酒窝为你收集整理的【Flask】WARNING: This is a development server. Do not use it in a production deployment. falsk WSGI的全部内容,希望文章能够帮你解决【Flask】WARNING: This is a development server. Do not use it in a production deployment. falsk WSGI所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复