Reputation: 61
In all the above scenarios, the notebook asks for a password, the password was never set up, tried it with PC password, but still any success.
Changed the browser from firefox to chrome. But no success.
Upvotes: 2
Views: 2175
Reputation: 41
You can just use the following command when opening the Jupiter notebook.
jupyter notebook --NotebookApp.token='' --NotebookApp.password=''
Upvotes: 3
Reputation: 61
Solved it,
disabling jupyter Notebook Password
First open Anaconda Prompt
Enter the following command
jupyter notebook --generate-config
From jupyter directory ,edit the jupyter_notebook_config.py using notepad make changes into the jupyter_notebook_config.py using notepad.
c.NotebookApp.token = ''
c.NotebookApp.password = ''
c.NotebookApp.open_browser = True
c.NotebookApp.ip = 'localhost'
There should be a config JSON file, edit that file, In the password key, make its value an empty string.
Now launch the jupyter notebook from anaconda navigator or from cmd.
Upvotes: 4