You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 26, 2019. It is now read-only.
I am trying my best to follow the instructions here, here, and here in order to deploy a dashboard as a web app.
I work for a school board and the end-users of my reports are those who do not know how to program, but would love to use widgets to explore the data interactively. (So, I'm basically Alice).
I've installed the packages specified in the documentation, and done the following to get the kernal gateway, notebook server, and dashboard server running.
# run the kernel gateway in the background using default settings
jupyter-kernelgateway &
# listening on port 8888
# run the notebook server
juputer notebook &
# listening on port 8889
# run the dashboard server
jupyter-dashboards-server --NOTEBOOKS_DIR=`pwd` --KERNEL_GATEWAY_URL=http://127.0.0.1:8888 &
# listening on port 3000
However, when I go to 127.0.0.1:8888 and select my notebook, nothing shows up except for the following:
The notebook has a few "select" widgets and they interact with one another calling python callbacks to do certian things. Here is a part of what the notebook looks like:
Could you please help me to understand what I am doing wrong, and even if the notebook were to show up, what I would have to do to share it with another user (and have it maintain interactivity).
Thanks very much,
Al
The text was updated successfully, but these errors were encountered:
I reckon that's your issue (this was the issue when I had a similar problem).
If you have a look at the README this project currently only supports ipywidgets 5.2.x. If you use methods that aren't a part of 5.2.x or you have your kernel gateway running with ipywidgets 5.2.x I don't think it will work.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi there,
I am trying my best to follow the instructions here, here, and here in order to deploy a dashboard as a web app.
I work for a school board and the end-users of my reports are those who do not know how to program, but would love to use widgets to explore the data interactively. (So, I'm basically Alice).
I've installed the packages specified in the documentation, and done the following to get the kernal gateway, notebook server, and dashboard server running.
However, when I go to 127.0.0.1:8888 and select my notebook, nothing shows up except for the following:
The notebook has a few "select" widgets and they interact with one another calling python callbacks to do certian things. Here is a part of what the notebook looks like:
Could you please help me to understand what I am doing wrong, and even if the notebook were to show up, what I would have to do to share it with another user (and have it maintain interactivity).
Thanks very much,
Al
The text was updated successfully, but these errors were encountered: