This is the setting for opening a new window when starting Jupyter Notebook. I wrote it because there was no Windows version unexpectedly.
[Automatically open in new window when starting Jupyter Notebook] (http://qiita.com/irs/items/e39378206fb48e374806) I referred to. Mac version.
Windows 10 (64bit) Anaconda 4.4.0 (64bit)
Creating a configuration file.
> jupyter notebook --generate-config
It will be generated in
Find c.NotebookApp.browser in jupyter_notebook_config.py and change it to:
c.NotebookApp.browser = '\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" %s --new-window'
% s is the URL and --new-window means it will open in a new window.
I can't think of exe enclosing "" "and then specifying options.
Recommended Posts