0
0

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.

いまさら聞けない Jupyter NotebookをWindowsで開けなくなった時のメモ

Posted at

WindowsでAndaconda Nabigatorを使ってJupyter Notebookを開くとき,
Version upによる影響かわからないが,開けなくなった.

Jupyter NotebookのBatファイルのディレクトリにあったerror.txtファイルの

[C 16:33:17.925 NotebookApp] Bad config encountered during initialization:
[C 16:33:17.925 NotebookApp] The 'contents_manager_class' trait of a NotebookApp instance must be a subclass of 'notebook.services.contents.manager.ContentsManager', but a value of class 'dict' (i.e. {}) was specified.

をコピペして,原因を調査したところ,全く同じエラーが2015年ごろ言及されていた.

解決策は

1.管理者としてcmdを開く
2.jupyter notebook --config=/home/john/mystuff/jupyter_notebook_config.json と入力.

注意: 上記スクリプトを実行する前に、AnacondaとJupyter Labをアンインストールし、C:/ドライブ内のすべてのファイルを削除する必要があることを確認してください。
そして、最新のPython3をインストールし直し、環境パスを正しく追加/設定し、C:/User/.../Pythonではなく、C:/PythonのメインルートフォルダにPyhonを作成することが推奨されていますが、Jupyterノートブックをインストールする必要があります。

jupyter_notebook_config.pyが見つからないことがあります。 jupyter_notebook_config.pyを作成するには、pythonの.NET Frameworkをインストールした後に、jupyter_notebook_config.pyファイルを作成します。
とすると、以下のようなコマンドラインを使用することができます。
jupyter notebook --generate-config

がベストアンサーとなっているっぽい.

指示に従い,Anaconda promptで(コマンドプロンプトでは jupyterなどのバッチファイルを入れていなかったため)入力したところ,改善を確認した.

この程度のerrorはさっさと直したいもの.備忘録として...

[参考記事]
https://github.com/jupyter/notebook/issues/274#issuecomment-522808247

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?