jupyter notebook 起動時にブラウザを立ち上げない
設定ファイル作成
設定ファイル作成.次のコマンドを実行する.既に設定ファイルが作成されたいる場合,実行不要.
$ jupyter notebook –generate-config
設定ファイル「~/.jupyter/jupyter_notebook_config.py」が作成される.
ブラウザを立ち上げない
作成された設定ファイルに次の設定を追加.「c.NotebookApp.open_browser = True」が設定されていた場合は,「False」に変更する.
## Whether to open in a browser after starting. The specific browser used is
# platform dependent and determined by the python standard library ‘webbrowser’
# module, unless it is overridden using the –browser (NotebookApp.browser)
# configuration option.
#c.NotebookApp.open_browser = True
c.NotebookApp.open_browser = False