Jupyter lab 에 익스텐션 설치하기
캐글에서 사용된 노트북을 실행하기 위한 환경을 구성해봅니다.
- 먼저 파이썬 설치 (홈페이지 또는 콘다)
- 쥬피터 랩 설치
# pip
pip install jupyterlab
# conda
conda install -c conda-forge jupyterlab
# 업데이트
pip install -U jupyterlab
쥬피터랩에 익스텐션 설치
- TOC (https://github.com/jupyterlab/jupyterlab-toc)
- 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
'Programming > Python' 카테고리의 다른 글
BeautifulSoup 파싱이 뭔가 이상하다 (1) | 2019.06.07 |
---|---|
FTP file upload (0) | 2018.11.07 |
Amazfit Bip Font Creator 5 - 실행 파일 생성 (0) | 2018.05.15 |
Amazfit Bip Font Creator 4 - 폰트 생성 (0) | 2018.05.14 |
Amazfit Bip Font Creator 3 - 쓰레드 실행 (0) | 2018.05.13 |
댓글