📘

WSL2(ubuntu: 20.04)で Jupyter notebook インストールメモ

2020/09/29に公開

環境

  • OS: windows 10 Pro Version 1909 (OS build 18363.1082)
  • WSL2: ubuntu 20.04
  • python: 3.8.2

手順

  • aptでインストール
    $ sudo apt update -y && sudo apt upgrade -y
    $ sudo apt install jupyter-notebook
    $ jupyter --version
    jupyter core     : 4.6.3
    jupyter-notebook : 6.1.4
    qtconsole        : 4.7.7
    ipython          : 7.18.1
    ipykernel        : 5.3.4
    jupyter client   : 6.1.7
    jupyter lab      : not installed
    nbconvert        : 6.0.6
    ipywidgets       : 7.5.1
    nbformat         : 5.0.7
    traitlets        : 5.0.4
    

ブラウザが自動で立ち上がらない対処法

  • WSLでjupyter notebookを起動すると以下のエラーがでる

    $ jupyter notebook
    
    Start : このコマンドは、次のエラーのため実行できません: 指定されたファイルが見つかりません。。
    発生場所 行:1 文字:1
    + Start "file:///home/<username>/.local/share/jupyter/runtime/nbse ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [Start-Process]、InvalidOperationException
        + FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
    
  • 対処としてjupyter notebookのconfigファイルを作成し、以下を記載する

    $ jupyter notebook --generate-config
    $ vi .jupyter/jupyter_notebook_config.py
    
    jupyter_notebook_config.py
    c.NotebookApp.use_redirect_file = False
    
  • 無事起動

    $ jupyter notebook
    

Discussion