can't run JupyterDash.infer_jupyter_proxy_config() in Jupyterhub
See original GitHub issueI am not able to run JupyterDash.infer_jupyter_proxy_config()
in Jupyterhub. There is no error message, cell remains in busy state without any output. Do you have any idea?
app.run_server()
returns127.0.0.1:8005
which will not work from outsideapp.run_server("mode=jupyterlab")
also won’t work- I also see in the browser console:
blocked mixed content: the page was loaded over HTTPS, but requested an insecure frame 'http://ip:8050/'. This request has been blocked; the content must be served over HTTPS.
only thing working is opening the ip:8050 in another tab and I can see the dashboard.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:12
- Comments:8
Top Results From Across the Web
Docker Image Not Running On Host 8050 - ADocLib
Develop Dash apps in the Jupyter Notebook and JupyterLab plotly/jupyterdash. Can't run JupyterDash or Plotly from JupyterLab 3.0.10 with docker container.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Same here. We want to develop dash apps in jupyterlab hub (tljh).
It appears that about a year ago, ipykernel changed several functions into coroutines. That includes this function being called in jupyter-dash.
Thus, that function call needs to be changed to maybe something like this:
That would hopefully fix it.
For now, I’m just downgrading
ipykernel
to 5.5.4 (the version immediately before that change) and the jupyter dash example seems to work…