Last active
November 27, 2018 01:13
-
-
Save kitmonisit/08c617d345f547360098d87348ded7c9 to your computer and use it in GitHub Desktop.
Jupyter Notebook theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/zsh | |
jt -r | |
jt -t oceans16 \ | |
-T \ | |
-lineh 130 \ | |
-f meslo \ | |
-fs 9 \ | |
-nf sourcesans \ | |
-nfs 9 \ | |
-tfs 8 \ | |
-cellw 80% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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