Set theme for jupyter notebooks after installing : conda install -c conda-forge jupyterthemes
jt -t monokai -f firacode -tf cardoserif -tfs 115 -nf ptsans -cellw 90% -T -N -kl
Install using: conda install -c conda-forge jupyter_contrib_nbextensions && jupyter contrib nbextension install
... and you'll have the options menu ready in the Edit drop down menu on a New notebook.
To have them available everytime you start a notebook server:
- Install the packages
- Create a jupyter notebook config file using: jupyter notebook --generate-config
- Add these lines to the file:
import os
os.system('jt -t monokai -f firacode -tf cardoserif -tfs 115 -nf ptsans -cellw 90% -T -N -kl')
os.system('jupyter contrib nbextension install')