美文网首页
Docker--jupyter notebook

Docker--jupyter notebook

作者: westar | 来源:发表于2018-03-22 17:15 被阅读0次

    解决报错

    cannot assign requested address.
    
    jupyter notebook --ip=127.0.0.1 --allow-root
    

    jupyter notebook更改配置文件

    #生成jupyter配置文件,这个会生成配置文件.jupyter/jupyter_notebook_config.py
    jupyter notebook --generate-config
    
    #使用ipython生成密码
    In [1]: from notebook.auth import passwd
    In [2]: passwd()
    Enter password: 
    Verify password: 
    Out[2]: 'sha1:38a5ecdf288b:c82dace8d3c7a212ec0bd49bbb99c9af3bae076e'
    
    #去配置文件.jupyter/jupyter_notebook_config.py中修改以下参数
    c.NotebookApp.ip='*'                          #绑定所有地址
    c.NotebookApp.password = u'刚才生成的密码'
    c.NotebookApp.open_browser = False            #启动后是否在浏览器中自动打开
    c.NotebookApp.port =8888                      #指定一个访问端口,默认8888,注意和映射的docker端口对应
    

    相关文章

      网友评论

          本文标题:Docker--jupyter notebook

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