美文网首页
jupyter远程连接SSH服务器,服务器没有Xmanager如

jupyter远程连接SSH服务器,服务器没有Xmanager如

作者: 水球喵 | 来源:发表于2018-07-05 14:04 被阅读0次

    看了官网的基础操作,https://jupyter.readthedocs.io/en/latest/running.html#id3,意思是,如果你已经安装了anaconda,那就jupyter就已经安装好了,否则的话,可以使用pip和conda安装。

    如果你需要通过SSH远程访问服务器中使用jupyter,发现,直接执行jupyter notebook,不报错,但按照他给的提示看No web browser found: could not locate runnable browser.
    说明,我们还没有配置好,接下来就说明下,在服务器上如何配置

    $jupyter notebook --generate-config
    提示:Writing default config to: $你的目录$.jupyter/jupyter_notebook_config.py
    $ipython
    提示:
    In [1]: from notebook.auth import passwd#输入
    In [2]: passwd()#输入
    Enter password:#这里是你之后用到的登录jupyter 密码
    Verify password: #再次输入密码
    Out[2]: #获取到输出的密钥
    'sha1:e91d9d25ad12:2938334445359d3771dba613678dc3dc4afb3'
    In [3]:exit()#退出后,编辑一开始创建的config
    vim ~/.jupyter/jupyter_notebook_config.py
    在最上面添加以下几句话
    c.NotebookApp.ip='*'
    c.NotebookApp.password = u'sha1:e91d9d25ad12:2938334445359d3771dba613678dc3dc4afb3'
    c.NotebookApp.open_browser = False
    c.NotebookApp.port =8822
    
    然后保存退出后,执行
    jupyter notebook 
    

    最后在你自己的浏览器里面输入服务器ip+端口号就可以了,例如:http://204.20.197.33:8822/

    相关文章

      网友评论

          本文标题:jupyter远程连接SSH服务器,服务器没有Xmanager如

          本文链接:https://www.haomeiwen.com/subject/kfhpuftx.html