Cu Buffalo
Cu Buffalo

Reputation: 59

run jupyter-dash update without killing kernels

I am working on a dash project on jupyter notebook with jupyter-dash. Each time I updated my code, I had to kill the kernels and than restart the jupyter notebook in order to get the changing code working. Otherwise the dash webpage shows double loaded errors. I wonder if there is a way to refresh the jupyter-dash server without restarting the kernels?

Upvotes: 5

Views: 849

Answers (1)

Hamzah Al-Qadasi
Hamzah Al-Qadasi

Reputation: 9826

Yes, now you can do that without killing the kernel. Try to use JupyterDash with mode='external'. Please have a look at the code below:

enter image description here

Upvotes: 0

Related Questions