美文网首页
设置jupyter服务器的密码

设置jupyter服务器的密码

作者: lekf123 | 来源:发表于2018-06-26 10:18 被阅读0次

    参考 1:https://blog.csdn.net/Clifnich/article/details/53912611
    参考 2:https://www.zhihu.com/question/52814963/answer/140153400

    可以用 pip install jupyter 装著名的jupyter服务器。
    也可以直接安装 anaconda ,具体另行查找。

    怎么生成 jupyter notebook 密码

    可以参考 :Running a notebook server

    在服务器上执行:

    jupyter notebook --generate-config
    

    会在你的家目录下自动生成配置文件,例如:/home/jack/.jupyter/jupyter_notebook_config.py

    打开jupyter,新建一个notebook,生成密码的sha1秘钥,代码如下:

    from notebook.auth import passwd
    passwd()
    

    在文本框中输入并确认一次密码后记录sha1秘钥值,如 'sha1:XXXXXXX'

    将这段值按如下格式粘贴到配置文件jupyter_notebook_config.py末尾

    c.NotebookApp.password = u'sha1:XXXXXXX'
    
    

    重启jupyter,重新打开网页即可

    相关文章

      网友评论

          本文标题:设置jupyter服务器的密码

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