本文主要是介绍jupyter 远程访问配置:KeyError: 'allow_remote_access',希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天在配置服务器 的jupyter notebook的时候遇见了下面的错误
KeyError: 'allow_remote_access'
jupyter都是常规方法配置的,后面发现在配置jupyter_notebook_config.py的时候少加了下面的东西,于是输入编辑jupyter_notebook_config.py 在配置里添加:
c.NotebookApp.allow_remote_access = True
然后就可以正常启动和访问了
总的配置如下:
c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha1:14af07fba'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888c.NotebookApp.allow_remote_access = Truec.NotebookApp.notebook_dir = '/usr/local/mypro/'
远程访问阿里云服务器jupyter具体配置
这篇关于jupyter 远程访问配置:KeyError: 'allow_remote_access'的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!