1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

macでjupyter-notebookのブラウザをgoogle chromeに設定する方法

Last updated at Posted at 2020-12-22

#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で開けるようになります。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?