Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the default browser used by jupyter notebook in windows

I'm on a windows machine without admin right and I would like to run jupyter on chrome, while the default browser is another.

I have a local installation of the Anaconda distribution and my first option to start jupyter would be through the Anaconda Navigator, but maybe I have to do something else. Because it is a local installation the command line jupyter notebook produces no results.

When I paste the url address in the default browser I have (something like http://localhost:8892/notebooks/Home/Exercices/Testing1.ipynb the chrome page asks me for a password or token. I have no password and I do not know what a token is.

Is there a way to change the browser of the Anaconda Navigator? or how can I start jupyter with Chrome?

like image 633
Marco Avatar asked Dec 12 '17 12:12

Marco


People also ask

How do I change my Jupyter Notebook from Internet Explorer to Chrome?

Click on Settings and scroll down to Default browser. Change the value of the default browser to Google Chrome by clicking on whatever your default browser is there and selecting Google Chrome .

How do I change my Default browser on Windows?

Select the Start button, and then type Default apps. In the search results, select Default apps. Under Web browser, select the browser currently listed, and then select Microsoft Edge or another browser.


1 Answers

Thanks to @Darthbith and this post How to change the default browser used by the ipython/jupyter notebook in Linux? I was able to figure it out:

Step 1: To open Anaconda Prompt from the Start Menu and type

# for old notebook and JupyterLab < 3.0, or jupyter notebook --generate-config # for new nbclassic and JupyterLab >= 3.0 jupyter server --generate-config 

This will generate the file ~/.jupyter/jupyter_notebook_config.py (or jupyter_server_config.py for nbclassic/new JupyterLab)

Step 2: Edit this file and change the following line (chrome is also is also in a local installation)

# for old notebook and JupyterLab < 3.0 c.NotebookApp.browser = u'C:/Home/AppData/Local/Google/Chrome/Application/chrome.exe %s' # OR for new nbclassic and JupyterLab >= 3.0 c.ServerApp.browser = u'C:/Home/AppData/Local/Google/Chrome/Application/chrome.exe %s' 
like image 100
Marco Avatar answered Sep 28 '22 06:09

Marco