How to customize the Jupyter notebook 1.

Murvai Ervin
Apr 28, 2021

--

The Jupyter themes

I often use the Jupyter notebooks for my data analyst, data scientist work, and for Python programming. The default appearence is simple for me. Fortunately, we got a solution, we can change the notebook themes.

First, we should install the themes with this command:

pip install jupyterthemes

When the installation is done, we can list the installed themes with this command:

!jt -l

You should choose one from the list. I choosed the onedark theme.

!jt -t onedork

To get the original theme, you have to type this command:

!jt -r

--

--

No responses yet