なにかと不具合に見舞われる僕のPython環境ですが、
今度はjupyter notebookがまともに動かなくないようになりました。
ヘッダーのみで表示がおかしくターミナルには以下のエラーが出ています。
HTTP 404: Not Found (Schema not found: /opt/homebrew/Cellar/python@3.11/3.11.5/Frameworks/Python.framework/Versions/3.11/share/jupyter/lab/schemas/@jupyterlab/translation-extension/plugin.json)
どうやらHomeBrewとjupyterの相性が悪いようです。
解決策は以下の通りでした。
pip uninstall jupyterlab
pip install jupyterlab==3.6.3
jupyter lab build
jupyter notebook
jupyterlabをアンインストールして、
3.6.3をインストールし直し。
jupyterlabをビルドして、
jupyter notebookを起動!
ちゃんと出た!!!
同じようなエラーが出ていたら参考になれば幸いです。