#jupyter notebookの[]や候補予測がmacのsafariでは使いにくいのでchromeに変更
括弧などがsafariでjupyter notebookを開くと使いにくいのでchromeを既定ブラウザにしたいと思いました。
ただ、macだと少し設定が面倒らしいので今回は個人メモとして記述します。
まずは、find.jupyterで.jupyterのファイルを検索
.jupyter/jupyter_notebook_config.py
その中から上のファイルをコピー
open .jupyter/jupyter_notebook_config.py
でファイルを開く。
その中から
#c.NotebookApp.browser = ''
を探す。
私のターミナルだと99行にありました。
この#を外して
NotebookApp.browser = '/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome %s'
としてjupyterを開くとchromeで開けるようになります。