[ jupyter lab 3 ] 주피터 랩 3 에서 유용한 extensions

2021. 7. 9. 00:05python/jupyter

728x90
반응형

1. 우선 node.js를 깔은 후 

 

콘다환경이라면 

conda install -c conda-forge nodejs

2. ipywidgets 설치

conda install -c conda-forge ipywidgets

아래글 참조

 

[jupyter lab 3] 주피터 랩 3 tqdm, update jupyter and ipywidgets.

주피터 랩 3.0 - jupyter lab 3.0 주피터 랩 3.0 에서는 아래와 같이 해야 한다. 1. nodejs 가 설치 안되 있으면 설치해야 한다. 2. importerror: iprogress not found. please update jupyter and ipywidgets. 임..

uwgdqo.tistory.com


콘다 환경이라면 conda install 이용

아니면 pip install 하세요

주피터 랩 3 익스텐션 탭에서 바로 설치시 실행이 안될 수도 있습니다. 

 

1. 헤딩 접기 (Collapsible Headings)

aquirdTurtle/Collapsible_Headings: Implements Collapsible Headers for Jupyter Lab Notebooks (github.com)

 

aquirdTurtle/Collapsible_Headings

Implements Collapsible Headers for Jupyter Lab Notebooks - aquirdTurtle/Collapsible_Headings

github.com

pip 설치 

pip install aquirdturtle_collapsible_headings

 

 

2. 리소스 모니터 (Resource Monitor)

jtpio/jupyterlab-system-monitor: JupyterLab extension to display system metrics (github.com)

 

jtpio/jupyterlab-system-monitor

JupyterLab extension to display system metrics. Contribute to jtpio/jupyterlab-system-monitor development by creating an account on GitHub.

github.com

상단에 (Mem 197MB) 사용중 메모리를 볼 수 있다

pip install jupyterlab-system-monitor
conda install -c conda-forge jupyterlab-system-monitor

3. 변수 인스펙터(variable inspector)

lckr/jupyterlab-variableInspector: Variable Inspector extension for Jupyterlab (github.com)

 

lckr/jupyterlab-variableInspector

Variable Inspector extension for Jupyterlab. Contribute to lckr/jupyterlab-variableInspector development by creating an account on GitHub.

github.com

오른쪽 클릭을 하면 Open Variable inspector 이 생긴다

pip install lckr-jupyterlab-variableinspector
conda install -c conda-forge jupyterlab-variableinspector

 

반응형