Is it possible for another device to connect to Jupyter on my current device? Without using jupyterhub
Like the way xender works offline.
Is it possible for another device to connect to Jupyter on my current device? Without using jupyterhub
Like the way xender works offline.
I think the answers for this question would be helpful: Why I can't access remote Jupyter Notebook server?
You need to set the Jupyter configuration file jupyter_notebook_config.py like this:
c.NotebookApp.allow_origin = '*' # allow all origins
c.NotebookApp.ip = '0.0.0.0' # allow all ip
Also, don't forget to modify your firewall setting, if any.