jupyter-dash
jupyter-dash copied to clipboard
OBSOLETE - Dash v2.11+ has Jupyter support built in!
Hi, First of all, thank you so much for making this great feature available. I tried to follow your demo* from end to end, but this command line "app.run_server(mode="jupyterlab")" does...
Has anyone been able to get Dash working in an AWS SageMaker Jupyter notebook or or lab environment? I've been unsuccessful with all three modes of `inline`, `external`, `jupyterlab`. To...
When I tried to use JupyterDash from the JupyterLab (3.0.10) docker container, I got the error that the webserver is not responding: > This page isn’t working > 127.0.0.1 didn’t...
Rather than provide my own example, here's a broken example available from the `dash-sample-apps` repository. https://github.com/plotly/dash-sample-apps/tree/master/apps/dash-image-enhancing The prototypical example in the docs also fails. Searching online, there were some reports...
``` !pip install jupyter-dash !pip install dash_uploader app = JupyterDash(__name__) app.config.suppress_callback_exceptions = True du.configure_upload(app, r"C:\tmp\Uploads") app.layout = html.Div([ html.Div( dcc.Graph(id="output-data-upload", config = {'toImageButtonOptions': {'width': None, 'height': None, 'format': 'png', 'filename':...
I experienced the following issue described here: https://stackoverflow.com/questions/68729989/jupyterdash-in-jupyterlabs-fails-after-using-plotly-express-in-a-prior-cell/68737108#68737108 I was only able to solve my issue by downgrading to version 0.2.1. Maybe there can be a way for users to...
The jupyterlab extension is registering the comm target at notebook creation time (see https://github.com/plotly/jupyter-dash/blob/351cb7c24409b2312a474568b70005ce66eb31be/extensions/jupyterlab/src/index.ts#L78). This means that changing the kernel will not work. In practice all calls to `JupyterDash.infer_jupyter_proxy_config()` will...
If you run a code block like below for multiple times in jupyter lab, you see the log message is printed once at your first run, twice at your second...
The vanilla Dash class can take url_base_pathname and set both requests_pathname_prefix and routes_pathname_prefix [1][2]. The JupyterDash class, however, seems to have different behavior that it sets its own requests_pathname_prefix attribute,...