Avoiding token and password in Notebook

Hello, I am new to Jupyter Notebook so please bear with a novice question.

From my MEAN stack application I plan to open the Jupyter Notebook installed on my AWS EC2. Since my user is already authenticated in my application I do not want to ask for password again when Notebook is opened in browser. If I comment the c.NotebookApp.password in jupyter_notebook_config.py , it asks for “token”.

Is there a way to avoid token and password since I am already coming in after authentication. (Similar to question - Jupyter without password nor Token)

Thanks

You can disable the token by setting NotebookApp.token to the empty string, either on the command line, in your configuration file, or by exporting the environment variable JUPYTER_TOKEN

1 Like