Reputation: 59
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
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:
Upvotes: 0