0
1

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 1 year has passed since last update.

Apple Silicon搭載のMacBookでPythonとJupyter Notebookのインストールに関する問題とその解決法

Posted at

もしbrewを使用してPythonをインストールした後、
pipでJupyter Notebookもインストールした場合、
特にApple Siliconを搭載したMacBookを使用している場合、
私と同じ問題に遭遇する可能性があります。:joy:

ターミナルでjupyter notebookと入力して起動すると、ブラウザで表示されるのは以下のような画面です:

image.png

そして、ターミナルには長いログが表示され、その中には以下のような内容が含まれています:

Missing or misshapen translation settings schema: HTTP 404: Not Found (Schema not found: /opt/homebrew/Cellar/python@3.11/3.11.4_1/Frameworks/Python.framework/Versions/3.11/share/jupyter/lab/schemas/@jupyterlab/translation-extension/plugin.json)

これは新しいバージョンのJupyterがbrewやPythonと完全に互換性がないために発生するバグである可能性が高いです。
インターネットで調べた結果、最も簡単な解決策は以下のコマンドを実行することです:

ln -s /opt/homebrew/share/jupyter/ /opt/homebrew/Cellar/python@3.11/3.11.4_1/Frameworks/Python.framework/Versions/3.11/share/jupyter

これにより、Jupyterが再びschemaを見つけることができるようになります。
この方法でブラウザを再起動すると、ページが正常に表示されるはずです。

image.png

同じ問題に直面している方は、この方法を試してみてください。:metal::metal_tone1::metal_tone4:

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?