Jupyter Notebook authentication token while in Pycharm

后端 未结 6 1561
萌比男神i
萌比男神i 2020-12-22 18:02

I am trying to use the Jupyter notebook in Pycharm, but I realized that in the new Jupyter update, there was the addition of tokens.

I am following the tutorial belo

6条回答
  •  孤城傲影
    2020-12-22 18:48

    I had to reinstall Anaconda and some old config files for my Jupyter Notebook. Check for possible existing jupyter config file, that could contain a password or Token in some cases:

    • open terminal

    • Check for jupyter configuration directory:

      jupyter --config-dir

      (example output)>>> C:\Users\Username.jupyter

    open the file and check if "NotebookApp" is assigned in the file:

    {
      "NotebookApp": {
        "password": "sha1:1af4568a9g:64gsded68g4dsh434df634fhd684"
      }
    }
    

提交回复
热议问题