如何在本地连接服务器上的jupyter?

  1. 登陆远程服务器
  2. 生成配置文件
    $jupyter notebook --generate-config
    
    生成的文件路径一般情况下为~/.jupyter/jupyter_notebook_config.py
  3. 生成密码 在terminal输入ipython,输入一下代码

    In [1]: from notebook.auth import passwd
    In [2]: passwd()
    Enter password: 
    Verify password: 
    Out[2]: 'sha1:ce23d945972f:34769685a7ccd3d08c84a18c63968a41f1140274'
    

    把生成的密文‘sha1:ce…’复制下来

  4. 修改默认配置文件

    $vim ~/.jupyter/jupyter_notebook_config.py
    

    进行如下修改:

    c.NotebookApp.ip='*'
    c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
    c.NotebookApp.open_browser = False
    c.NotebookApp.port =8888 #随便指定一个端口
    

    找到相应行,把前面的#去掉,然后修改,或者什么都不改动,直接将上面四行插入到文本里。

  5. 启动jupyter notebook:

    $jupyter notebook
    
  6. 远程访问 此时应该可以直接从本地浏览器直接访问http://服务器地址:8888就可以看到jupyter的登陆界面。

results matching ""

    No results matching ""