Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kitmonisit
Last active November 27, 2018 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitmonisit/08c617d345f547360098d87348ded7c9 to your computer and use it in GitHub Desktop.
Save kitmonisit/08c617d345f547360098d87348ded7c9 to your computer and use it in GitHub Desktop.
Jupyter Notebook theme
#!/usr/local/bin/zsh
jt -r
jt -t oceans16 \
-T \
-lineh 130 \
-f meslo \
-fs 9 \
-nf sourcesans \
-nfs 9 \
-tfs 8 \
-cellw 80%
workon engg
pip install jupyter_contrib_nbextensions
pip install jupyter_nbextensions_configurator
jupyter contrib nbextension install --user
./jupyterthemes.sh
cd .jupyter/custom
# Add the following class rule to custom.css
# .output_subarea {
# margin-left: 20px;
# }
jupyter kernelspec list
# .ipython/profile_default/startup/startup.py
from jupyterthemes import jtplot
jtplot.style(
context='notebook',
ticks=True,
spines=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment