Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Dash apps for Dash>=2.11.0 #2442

Open
jravenel opened this issue Dec 7, 2023 · 0 comments
Open

Support Dash apps for Dash>=2.11.0 #2442

jravenel opened this issue Dec 7, 2023 · 0 comments

Comments

@jravenel
Copy link
Contributor

jravenel commented Dec 7, 2023

Discussed in https://github.com/orgs/jupyter-naas/discussions/2044

Originally posted by eliasdabbas July 24, 2023
The latest release of Dash supports running Dash apps within a Jupyter notebook natively.

Previously there was a separate package jupyter-dash to run within a notebook. Now they have been integrated and the code to run it doesn't need any additional logic:

from dash import Dash, html

app = Dash(__name__)

app.layout = html.Div([
    html.H1("Hello world!")
    ])

app.run()
Screen Shot 2023-07-24 at 3 50 26 PM

On Naas:

Screen Shot 2023-07-24 at 3 53 07 PM

It would be great if we can find a fix for this so we can run Dash apps natively on Naas. It would also be a great contribution to Dash, as currently this is only supported on local notebooks as well as Google Colab.

Happy to help on this in any way I can.
Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant