Jupyter Notebook 테마 세팅

JH Bang·2022년 5월 25일
0

ML

목록 보기
2/3


주피터 노트북은 주로 파이썬 데이터 분석 및 머신러닝에 사용하는 웹 기반의 REPL(Read Eval print Loop) 컴퓨팅 플랫폼이다. 구글 코랩도 주피터를 기반으로 만들어졌다.

처음에 설치하면 기본으로 하얀 화면의 인터페이스를 볼 수 있는데, jupyterthemes 패키지를 통해 사용자가 원하는 테마로 변경이 가능하다.

$ pip install jupyterthemes 

설치가 안된다면

$ sudo -H python3 -m pip install jupyterthemes
# -H :  Request that the security policy set the HOME environment variable to the home directory specified by the target user's password database entry.
$ jt -l #list all posibble themes
$ jt -t [theme name] #theme application
$ jt -r #theme setting restore back

custom themes

#dark
$ jt -t onedork -fs 95 -altp -tfs 11 -nfs 115 -cellw 88% -T
#light
$ jt -t grade3 -fs 95 -altp -tfs 11 -nfs 115 -cellw 88% -T
#other custom options
$ jt -t onedork -fs 95 -nfs 115 -tfs 95 -dfs 95 -ofs 95 -cursc r -cellw 88% -lineh 100 -altmd -kl -T -N

-fs : code font size
-nfs : menu font size
-tfs : markdown font size
-dfs : pandas dataframe font size
-ofs : Output font size
-cursc [color first letter] : cursor color
-cellw [number %] : cell width
-lineh : space between code lines
-altmd : markdown cell opacity
-kl : kernel python logo
-T : toolbar display
-N : file name display

개발자 깃허브
https://github.com/dunovank/jupyter-themes/blob/master/README.md

profile
의지와 행동

0개의 댓글