본문 바로가기

오늘의 공부/ubuntu

7.우분투 아나콘다 주피터 노트북 테마 설정하기

 

환경: ubuntu20.04 lts, anaconda

 

현재 아나콘다의 주피터를 사용중이므로 conda install로 주피터 테마패키지를 설치해줘야 합니다.

 

$ conda install -c conda-forge jupyterthemes

[설치 시 참고]

https://anaconda.org/conda-forge/jupyterthemes

 

Jupyterthemes :: Anaconda Cloud

 

anaconda.org

그리고 나서 

$ conda list

로 설치된 패키지 목록을 보면

 

 

 

jupytertheme이 설치 된 것을 확인할 수 있습니다.

 

 

[쥬피터 테마 리스트 확인하기]

$ jt -l

 

[테마 적용하기]

$jt -t 테마이름 -T

#예를 들어 Onedark라는 테마를 적용한다 치면 
#jt -t onedark -T 이렇게 치면 된다 여기서 맨마지막 T는 메뉴바 표시 유무이다.

 

 

그리고 원래대로 되돌리고 싶으면

 

$ jt -r

이라고 입력해주면 돌아옵니다.

[참고블로그]

https://code-machina.github.io/2019/02/07/Jupyter-Notebook-themes.html

 

Jupyter Notebook 테마 꾸미기

안녕하세요 코마 입니다. 오늘은 Jupyter Notebook 의 테마를 꾸며보도록 하겠습니다.

code-machina.github.io

https://medium.com/@rbmsingh/making-jupyter-dark-mode-great-5adaedd814db

 

Making Jupyter Dark Mode Great!

Jupyter is one of my favorite tool these days. I love the dark mode Theme on it. The following are some of the awesome tweaks I have done…

medium.com