美文网首页
jupyter 登陆的时候 Invalid credential

jupyter 登陆的时候 Invalid credential

作者: jiarf | 来源:发表于2021-03-26 10:06 被阅读0次

    因为之前已经远程安装了jupyter 并且在linux系统中也设置了无密码,但是不知道为啥用着用着又登不上了,就如下所示打开直接变成这样了:


    image.png

    添加了


    image.png
    这里的token也登不进去,

    这里可以重新设置一下jupyter
    jupyter notebook --generate-config
    ipython

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

    exit()
    接着在~/.jupyter/jupyter_notebook_config.py文件中最后添加几行

    c.NotebookApp.ip='222.197.214.27' # 应该是'*'
    c.NotebookApp.password = u'sha1:934b8cc6d375:515e47ed449f53663d1ff511378607f634d190b6'
    c.NotebookApp.open_browser = False
    c.NotebookApp.port =1234 #随便指定一个端口
    c.NotebookApp.notebook_dir = '/data1/jiarongf/jupyter_projects'   #设置jupyter启动后默认的文件夹
    

    即可
    顺便还有一个jupyter_notebook_config.json文件为

    {
      "NotebookApp": {
        "nbserver_extensions": {
          "jupyter_nbextensions_configurator": true
        },
        "password": "sha1:27bfe715d13d:f2cc5055cc20746a36eb990ca217b46a07b86faf"
      }
    }
    

    接着在终端输入jupyter notebook就可以打开了,在浏览器中输入的密码就是你的刚刚输入的密码,我的和登录linux密码是一致的,这个可以随意设置,登录后就可以正常运作了。

    相关文章

      网友评论

          本文标题:jupyter 登陆的时候 Invalid credential

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