본문 바로가기
Programming/Python

Jupyter lab 에 익스텐션 설치하기

by NAMP 2018. 11. 6.

Jupyter lab 에 익스텐션 설치하기

캐글에서 사용된 노트북을 실행하기 위한 환경을 구성해봅니다.

  • 먼저 파이썬 설치 (홈페이지 또는 콘다)
  • 쥬피터 랩 설치
# pip
pip install jupyterlab
# conda
conda install -c conda-forge jupyterlab

# 업데이트
pip install -U jupyterlab

쥬피터랩에 익스텐션 설치

  1. TOC (https://github.com/jupyterlab/jupyterlab-toc)
  2. plotly (https://github.com/jupyterlab/jupyter-renderers/tree/master/packages/plotly-extension)

라이브러리 설치

pip install seaborn plotly lightgbm

TOC

  • https://github.com/jupyterlab/jupyterlab-toc

Prerequisites 이 JupyterLab v0.35 이므로 해당 버전을 확인합니다.

$ jupyter lab --version
0.35.3

Prerequisites

  • JupyterLab v0.35

Installation

jupyter labextension install @jupyterlab/toc

plotly

  • https://github.com/jupyterlab/jupyter-renderers/tree/master/packages/plotly-extension

Requirements

  • JupyterLab ^0.30.0
  • Node.js >= 5
  • plotly.py >= 2.0.0 (optional)

Install

jupyter labextension install @jupyterlab/plotly-extension

matploy dark background

jupyter 테마를 dark 로 하고 있다면 matplotlib의 배경을 어둡게 변경합니다.

import matplotlib.pyplot as plt
plt.style.use('dark_background')

%matplotlib inline

댓글