Last active
February 17, 2020 10:31
-
-
Save dominiquesydow/dd09d8be1634ad3682495f70567b79f6 to your computer and use it in GitHub Desktop.
Jupyter Lab extentions list
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
# Jeremy Tuloup - A tour of JupyterLab extensions | |
# https://mybinder.org/v2/gh/jtpio/a-tour-of-jupyterlab-extensions/master?urlpath=lab%2Ftree%2Fpresentation.ipynb | |
# 1. jupyterlab-git | |
# https://github.com/jupyterlab/jupyterlab-git | |
jupyter labextension install @jupyterlab/git | |
# 2. nbdime | |
# https://github.com/jupyter/nbdime | |
pip install nbdime | |
jupyter labextension install nbdime-jupyterlab | |
# 3. jupyterlab_code_formatter | |
# https://github.com/ryantam626/jupyterlab_code_formatter | |
pip install jupyterlab_code_formatter | |
jupyter labextension install @ryantam626/jupyterlab_code_formatter | |
# 4. jupyterlab-toc | |
# https://github.com/jupyterlab/jupyterlab-toc¶ | |
jupyter labextension install @jupyterlab/toc | |
# 5. jupyterlab-quickopen | |
# https://github.com/parente/jupyterlab-quickopen | |
pip install jupyterlab-quickopen | |
jupyter labextension install @parente/jupyterlab-quickopen | |
# 6. jupyterlab-sidecar | |
# https://github.com/jupyter-widgets/jupyterlab-sidecar | |
jupyter labextension install @jupyter-widgets/jupyterlab-sidecar | |
# 7. jupyterlab-drawio | |
# https://github.com/QuantStack/jupyterlab-drawio | |
jupyter labextension install jupyterlab-drawio | |
# 8. jupyterlab-topbar | |
# https://github.com/jtpio/jupyterlab-topbar | |
jupyter labextension install jupyterlab-topbar jupyterlab-topbar-extension | |
# 9. jupyterlab-sql | |
# https://github.com/pbugnion/jupyterlab-sql¶ | |
#pip install jupyterlab_sql | |
#jupyter serverextension enable jupyterlab_sql --py --sys-prefix | |
# 10. jupyterlab-celltags | |
# https://github.com/jupyterlab/jupyterlab-celltags | |
jupyter labextension install @jupyterlab/celltags | |
# 11. jupyterlab-go-to-definition | |
# https://github.com/krassowski/jupyterlab-go-to-definition | |
jupyter labextension install @krassowski/jupyterlab_go_to_definition | |
# 12. jupyterlab-lsp | |
# https://github.com/krassowski/jupyterlab-lsp | |
jupyter labextension install @krassowski/jupyterlab-lsp | |
# 13. @jupyter-voila/jupyterlab-preview | |
# https://github.com/voila-dashboards/voila | |
conda install -c conda-forge voila | |
jupyter labextension install @jupyter-voila/jupyterlab-preview | |
# 14. jupyterlab-python-bytecode | |
# https://github.com/jtpio/jupyterlab-python-bytecode | |
jupyter labextension install jupyterlab-python-bytecode | |
# 15. jupyterlab-matplotlib | |
# https://github.com/matplotlib/jupyter-matplotlib | |
# 16. jupyterlab-variableinspector | |
# https://github.com/lckr/jupyterlab-variableInspector | |
# 17. jupyterlab-kernelspy | |
# https://github.com/vidartf/jupyterlab-kernelspy | |
jupyter labextension install jupyterlab-kernelspy | |
# 18. jupyterlab-heroku | |
# https://github.com/jtpio/jupyterlab-heroku | |
pip install jupyterlab-heroku | |
jupyter serverextension enable --sys-prefix --py jupyterlab_heroku | |
jupyter labextension install jupyterlab-heroku | |
# 19. jupyterlab-templates | |
# https://github.com/timkpaine/jupyterlab_templates | |
pip install jupyterlab_templates | |
jupyter labextension install jupyterlab_templates | |
jupyter serverextension enable --py jupyterlab_templates | |
# 20. jupyterlab-material-darker | |
# https://github.com/oriolmirosa/jupyterlab_materialdarker | |
jupyter labextension install @oriolmirosa/jupyterlab_materialdarker |
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
# Jeremy Tuloup - A tour of JupyterLab extensions | |
# https://mybinder.org/v2/gh/jtpio/a-tour-of-jupyterlab-extensions/master?urlpath=lab%2Ftree%2Fpresentation.ipynb | |
pip install nbdime jupyterlab_code_formatter jupyterlab-quickopen | |
conda install -y -c conda-forge voila | |
jupyter labextension install @jupyterlab/git nbdime-jupyterlab @ryantam626/jupyterlab_code_formatter @jupyterlab/toc @parente/jupyterlab-quickopen @jupyter-widgets/jupyterlab-sidecar jupyterlab-drawio @jupyterlab/celltags @krassowski/jupyterlab_go_to_definition @krassowski/jupyterlab-lsp @jupyter-voila/jupyterlab-preview jupyterlab-python-bytecode jupyterlab-kernelspy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment