dash- OSError:地址“http://127.0.0.1:8050”已在使用中

问题描述 投票:0回答:1

我在 jupyter 笔记本中使用 dash 和plotly。即使我关闭 8050 端口或关闭所有端口,我也会不断收到此错误。我想如果我在 jupyter 笔记本中运行它,我不需要指定端口号,对吗?我可以通过添加 port=8060 等来修复它。但是因为我在同一个笔记本内运行多个 app.run_server() ,所以我必须更改每个 run_server() 的端口号。
感谢您的帮助。

app = JupyterDash(__name__)
app.layout = html.Div([...])
app.run_server(mode='inline')
python plotly-dash
1个回答
0
投票

我当前并不理想的解决方案是重新启动计算机。不太理想,但每次都有效!

© www.soinside.com 2019 - 2024. All rights reserved.