jupyter notebook 테마 변경

~ pip3 -V    ← pip3 버젼 확인
~ pip3 install —upgrade pip  ← pip3 업그레이드

~ pip install jupyterthemes
~ jt -l #theme 확인
~ jt -t gruvboxd #grucboxd 테마 설정
~ jt -t onedork -f bitstream -T -N -fs 15 -nf opensans -nfs 12

# f bitstream : 코드 폰트를 bitstream으로 적용
# fs 12 : 글자 크기 12
# -T -N : 툴바와 제목을 보임 // default는 안보이는 상태라서 코드를 더 많이 볼 수 있습니다.
# -nf : 주피터노트북 폰트를 opensans로 적용
# -nfs 10 : 노트북 글자 크기 10

주피터 노트북 -> new -> terminal

anaconda prompt 를 대신한다. macOS의 터미널이나 iTerm2이 아닌 jupyter notebook의 terminal 에서 실행한다. 

Comment