관리자
  1. docker에서 port open

  2. generate config file
    jupyter server --generate-config

-> ~/.jupyter폴더에 jupyet_server_config.py가 생성된다.

  1. update jupyet_server_config.py
    c.ServerApp.password_required = True
    c.ServerApp.port = 8888
    
    c.NotebookApp.ip = '*'
    c.ServerApp.allow_origin = '*'
    c.ServerApp.allow_root = True
  2. jupyter lab --port=8888

 

https://jupyter-notebook.readthedocs.io/en/stable/public_server.html

+ Recent posts