Skip to content

Instantly share code, notes, and snippets.

@uniconstructor
Last active November 2, 2019 17:02
Show Gist options
  • Save uniconstructor/c48bda03d00aa0a8875555d0ef062144 to your computer and use it in GitHub Desktop.
Save uniconstructor/c48bda03d00aa0a8875555d0ef062144 to your computer and use it in GitHub Desktop.
Jupyter Notebook Setup

Jupyter Notepook setup

Installing Jupyter Notebook — Jupyter Documentation 4.1.1 alpha documentation

sudo apt-get install python3 python3-pip
echo "alias python='python3'" >> ~/.bash_aliases && source ~/.bash_aliases
echo "alias pip='pip3'" >> ~/.bash_aliases && source ~/.bash_aliases
sudo apt-get install python
pip3 install --upgrade pip --user
pip3 install jupyter --user
# extended UI
pip3 install jupyterlab --user
pip3 install scriptedforms --user
# dark theme
jupyter labextension install @oriolmirosa/jupyterlab_materialdarker --user
# install jupyterthemes
pip3 install jupyterthemes --user
# dataset summary / graphs
jupyter labextension install jupyterlab_voyager --user
# go to definition
jupyter labextension install @krassowski/jupyterlab_go_to_definition --user
# draw.io integration
jupyter labextension install jupyterlab-drawio --user
# community extensions
pip3 install jupyter_contrib_nbextensions --user
jupyter contrib nbextension install --user

Running

jupyter lab

https://github.com/oriolmirosa/jupyterlab_materialdarker GitHub - BurglarBenson/Jupyter-Atom-Dark-Theme: A dark theme for Jupyter Lab

List of provided nbextensions — jupyter_contrib_nbextensions 0.5.0 documentation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment