Skip to content

Instantly share code, notes, and snippets.

@josemarcosrf
Last active February 22, 2023 17:32
Show Gist options
  • Save josemarcosrf/5b58b63f5887ed3e729c1dff73a1c868 to your computer and use it in GitHub Desktop.
Save josemarcosrf/5b58b63f5887ed3e729c1dff73a1c868 to your computer and use it in GitHub Desktop.
jupyterlab setup and python minimal dependencies
black>=22.3.0
gitdb==4.0.9
itables~=1.1.2
ipython>=8.3.0
ipython-genutils==0.2.0
ipywidgets~=7.7.0
isort~=5.10.1
jupyter-client==7.3.0
jupyter-core==4.10.0
jupyter-server==1.17.0
jupyter-server-mathjax==0.2.5
jupyterlab>=3.4.0
jupyterlab-code-formatter>=1.5.3
jupyterlab-git==0.37.1
jupyterlab-pygments==0.2.2
jupyterlab-server==2.13.0
jupyterlab-widgets==1.1.0
ipympl>=0.9.2
rich>=12.3.0
tqdm>=4.64.0
# jupyterlab_legos_ui
# jupyterlab_darkside_ui
# Github list of available extexnsions:
# https://github.com/topics/jupyterlab-extension
pip install -r jupyter_env.txt
pip install \
jupyterlab-hide-code \
jupyterlab-system-monitor \
nbdime \
jupyterlab_latex \
jupyter-dash
pip install --upgrade \
jupyterlab jupyterlab-git
# Install lab extensions
jupyter labextension install \
base16-summerfruit-light \
base16-gruvbox-dark \
nbgather \
jupyterlab_tensorboard \
jupyterlab-topbar-extension \
jupyter-resource-usage
# List server extensions
jupyter server extension list
# List Lab extensions
jupyter labextension list
@josemarcosrf
Copy link
Author

josemarcosrf commented Dec 6, 2022

To install jupyter themes:

pip install jupyterthemes

You can get the list of available themes and change theme with:

jt -l
jt -t theme-name

To install jupyter-lab themes:

pip install jupyterlab_legos_ui
pip install jupyterlab_darkside_ui

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