WSL2(ubuntu:0.04)에서 Jupter notebook 설치 노트

컨디션

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

  • app를 통해 설치
    $ 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에서 jupter 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
    

  • 대응 방법으로 jupter notebook의 config 파일을 만들고 다음과 같은 내용을 기재합니다
    $ jupyter notebook --generate-config
    $ vi .jupyter/jupyter_notebook_config.py
    
    jupyter_notebook_config.py
    c.NotebookApp.use_redirect_file = False
    

  • 안전 가동
    $ jupyter notebook
    
  • 좋은 웹페이지 즐겨찾기