(推荐阅读时间,30s)
这个问题主要是由于远程打开的时候,并没有allow_remote_access=True
输入命令
vim ~/.jupyter/jupyter_notebook_config.py
加入c.NotebookApp.allow_remote_access=True ,如下
## The IP address the notebook server will listen on.
c.NotebookApp.ip = '*'
c.NotebookApp.allow_remote_access=True
本文介绍了解决Jupyter Notebook远程访问的问题。通过修改配置文件jupyter_notebook_config.py中的allow_remote_access参数为True,实现Jupyter Notebook服务器的远程访问功能。

606

被折叠的 条评论
为什么被折叠?



