Python 기반의 웹 대시보드 프레임워크인 Dash 구현 주피터 노트북이나 아나콘다 프롬프트에서 다음을 실행pip install dash 아래 명령어는 Jupyter 셀이 아닌 아나콘다 프롬프트 또는 CMD/Terminal에 입력jupyter labextension install jupyterlab-plotly최근 버전에서는 JupyterLab에서 특별한 확장 없이도 mode='inline'이 작동할 수 있습니다.즉, 이 명령어 자체가 필요 없을 수도 있습니다. 다음만 실행해보고 확인아래를 JupyterLab에서 실행from jupyter_dash import JupyterDash from dash import html app = JupyterDash(__name__) app.layout = html..