I have been launching Jupyter Notebook for years using the following command:
jupyter-notebook --port=7000 --no-browser --no-mathjax
When I t
You can first create a jupyter config file with:
cd ~/.jupyter
jupyter notebook --generate-config Then set the c.NotebookApp.token parameter to an empty string in the configuration file created
c.NotebookApp.token = ''
As mentioned in comment, Setting to an empty string disables authentication altogether, which is NOT RECOMMENDED.