Skip to content
Advertisement

Plotly: How to rewrite a standard dash app to launch it in JupyterLab?

You can find a bunch of Dash examples in the plotly docs, and most examples end with a note on how to build figures using Dash:

What About Dash? Dash is an open-source framework for building analytical applications, with no Javascript required, and it is tightly integrated with the Plotly graphing library.

Learn about how to install Dash at https://dash.plot.ly/installation.

But I’d like to fire them up in JupyterLab instead. So what changes would I have to make in the following ‘normal’ Dash app to make it run in JupyterLab?

Code sample:

JavaScript

Advertisement

Answer

Any working Dash app can be launched from JupyterLab with the setup described in the question by specifying use_reloader=False in:

JavaScript

But if you’d like to use JupyterLab and select between launching the app in your default browser, inline in a cell or directly in Jupyter in its own tab, just follow these simple steps:

Change the following lines

JavaScript

To this:

JavaScript

This will launch Dash inline directly in JupyterLab:

enter image description here

But you can also go for mode='external' to launch Dash it its own tab:

enter image description here

And you can set mode='external' to launch it in your default browser.

Complete code with changes:’

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement