来自 werkzeug 的 Run_simple dev Web 服务器无法在 Windows 下使用重新加载器运行
我无法在 Windows 下从 werkzeug 运行 run_simple
开发 Web 服务器和 use_reloader=True
:
run_simple("localhost", 8090, application, use_reloader=True)
最终它会抛出太多值无法解包
在 wergzeug.serving
中遍历 new_environ
时。如果我删除 use_reloader
(默认为 False
),则服务器运行不会出现问题。我想念什么?
更新:此问题仅出现在0.6版本上。 (也就是说,在 0.5 上有效,在 0.6 上则不然。我不知道有哪些小的修改。)
I can not run the run_simple
dev web server from werkzeug under windows and use_reloader=True
:
run_simple("localhost", 8090, application, use_reloader=True)
Eventually it throws too many values to unpack
while traversing new_environ
in wergzeug.serving
. If I remove use_reloader
(defaults to False
) than the server runs without problems. What do I miss?
UPDATE: This problem appears only on 0.6 version. (That is, on 0.5 works, on 0.6 it does not. I don't know about the minor revisions.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用开发版本。即将发布的 0.7 版本将解决这个问题。
Use the development version. The upcoming 0.7 release will fix that.