Last active
June 11, 2024 15:45
-
-
Save krassowski/fe9646b126cce319e9b3569de9c259d9 to your computer and use it in GitHub Desktop.
JupyterLab Gallery - early draft
This file contains hidden or 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
{ | |
"GalleryManager": { | |
"title": "Tutorials", | |
"destination": "tutorials", | |
"exhibits": [ | |
{ | |
"git": "https://github.com/numba/nvidia-cuda-tutorial.git", | |
"homepage": "https://github.com/numba/nvidia-cuda-tutorial", | |
"title": "Numba for CUDA Programmers", | |
"description": "Nvidia contributed CUDA tutorial for Numba" | |
}, | |
{ | |
"git": "https://github.com/yunjey/pytorch-tutorial.git", | |
"homepage": "https://github.com/yunjey/pytorch-tutorial", | |
"title": "PyTorch Tutorial", | |
"description": "PyTorch Tutorial for Deep Learning Researchers", | |
"icon": "https://github.com/yunjey/pytorch-tutorial/raw/master/logo/pytorch_logo_2018.svg" | |
}, | |
{ | |
"git": "https://github.com/jupyter-widgets/tutorial.git", | |
"homepage": "https://github.com/jupyter-widgets/tutorial", | |
"title": "Jupyter Widgets Tutorial", | |
"description": "The Jupyter Widget Ecosystem" | |
}, | |
{ | |
"git": "https://github.com/amueller/scipy-2018-sklearn.git", | |
"homepage": "https://github.com/amueller/scipy-2018-sklearn", | |
"title": "Scikit-learn Tutorial 2018", | |
"description": "SciPy 2018 Scikit-learn Tutorial" | |
} | |
] | |
} | |
} |
This file contains hidden or 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
jupyterlab==4.2.1 | |
jupyterlab-gallery==0.2.0 | |
jupyterlab-new-launcher | |
# | |
jupyter_server==2.14.0 | |
jupyter_client==8.6.1 | |
jupyter_core==5.7.2 | |
jupyterlab_server==2.27.1 |
This file contains hidden or 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
#!/bin/bash | |
set -e | |
echo $@ | |
exec jupyter-lab "${@:4}" --config jupyter_gallery_config.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment