how to open Jupyter notebook in chrome on windows
Solution 1:
If you haven't already, create a notebook config file by running
jupyter notebook --generate-config
Then, edit the file jupyter_notebook_config.py
found in the .jupyter
folder of your home directory.
You need to change the line # c.NotebookApp.browser = ''
to c.NotebookApp.browser = 'C:/path/to/your/chrome.exe %s'
On windows 10, Chrome should be located C:/Program Files (x86)/Google/Chrome/Application/chrome.exe
but check on your system to be sure.
Solution 2:
Just make chrome as a default browser and launch the jupyter . It will work
To Make Google chrome a default browser , follow steps
- Click on Customize and Control Google chrome (The vertical three dots on the Upper right corner of your google chrome browser)
- 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
.
Note:
In windows 10, you will be redirected to Default apps under your computer's Settings. Please scroll down to Web browser and Select Google Chrome. If promted, Click on OK else just close the settings tab and return to yourcommand
or anaconda prompt
and type jupyter notebook
as usual. A new jupyter notebook tab should open in Google Chrome now.