美文网首页
利用win浏览器访问Ubuntu上Jupyter

利用win浏览器访问Ubuntu上Jupyter

作者: 绿豆喵 | 来源:发表于2018-12-12 13:48 被阅读0次

    Ubuntu上操作:

    1. jupyter notebook --generate-config

    2. 生成密码

    生成密码

    3.vi /【路径】/.jupyter/jupyter_notebook_config.py

    修改四项

    c.NotebookApp.ip = '*'

    c.NotebookApp.password = u'sha1:bcd259ccf...<your hashed password here>'

    c.NotebookApp.open_browser = False

    c.NotebookApp.port = 9999

    #端口号随意

    4. 启动

    jupyter notebook

    Win上操作:

    浏览器输入 ip:端口号 访问

    如192.168.1.1:8899

    如果直接输入无法连接,则需要利用ssh进行连接:

    1. 安装OpenSSH组件

    2. 打开cmd

    3. 输入ssh -N -f -L localhost:8888:localhost:8889 remote_user@remote_host

    前面是win,后面是linux,看情况改端口号

    remote_user@remote_host改成自己的用户名和服务器IP地址

    4. 打开浏览器,输入地址:http://localhost:8888/

    参考:

    https://jupyter-notebook.readthedocs.io/en/latest/public_server.html#notebook-public-server

    https://zhuanlan.zhihu.com/p/33420241

    https://www.bilibili.com/read/cv1420735/

    https://blog.csdn.net/patrick75/article/details/51473884

    http://yueshi.me/?p=297

    相关文章

      网友评论

          本文标题:利用win浏览器访问Ubuntu上Jupyter

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