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 Ana
Jupyter looks for the BROWSER environment variable when choosing which browser to launch.
I recommend setting BROWSER over configuring Jupyter specifically, because setting BROWSER is the default way to specify which browser you prefer, regardless of which application it applies to.
To choose the browser for a single session, set the BROWSER environment variable when running the jupyter process.
BROWSER=chromium-browser jupyter notebook when you have chromium-browser when you prefer to use chromium-browser on PATH. Typical for Linux.
BROWSER=C:/Home/AppData/Local/Google/Chrome/Application/chrome.exe jupyter notebook when you don't have the application on PATH. Typical for Windows.
BROWSER= otherwise.
To choose browser for your whole system, set the BROWSER environment variable globally.