Hey folks,
I have a feeling this is simple but I can’t seem to find the path. I am trying to remove the Download widget/toolbar item from the Toolbar; the button on the right side of the toolbar in this image:
The Settings Config does not have this button/widget listed so I am assuming it is installed as an ipywidget. But I can’t seem to figure out which installation or how to hide it.
We are using Notebook 7 and JL 4.
Can someone point me in the right direction?
Thanks,
Sean
This download buttons comes from an extension. What extensions do you have installed?
Thanks @krassowski.
I checked this via this command:
jupyter labextension list
And get this list(I don’t see anything here?):
-
jupyterlab_pygments v0.3.0 enabled OK (python, jupyterlab_pygments)
-
jupyter-offlinenotebook v0.3.1 enabled X
-
nbdime-jupyterlab v3.0.1 enabled OK
-
jupyterlab-rise v0.42.0 enabled OK (python, jupyterlab_rise)
-
jupyterlab-plotly v5.23.0 enabled X
-
jupyter-matplotlib v0.11.4 enabled OK
-
jupyterlab-jupytext v1.4.3 enabled OK (python, jupytext)
-
ipylab v1.0.0 enabled OK (python, ipylab)
-
@jupyter-widgets/jupyterlab-manager v5.0.11 enabled OK (python, jupyterlab_widgets)
-
@jupyter-server/resource-usage v1.0.2 enabled OK (python, jupyter-resource-usage)
-
@jupyter-notebook/lab-extension v7.2.1 enabled OK
-
@hadim/jupyter-archive v3.4.0 enabled OK (python, jupyter-archive)
-
@jupyterlab-contrib/spellchecker v0.8.4 enabled OK (python, jupyterlab-spellchecker)
-
@jupyterhub/jupyter-server-proxy v4.3.0 enabled OK
-
@jupyterlab/git v0.50.1 enabled OK (python, jupyterlab-git)
Thanks again
Of of these I suspect the button gets added by jupyter-offlinenotebook
, I would suggest trying to disable it or checking the extension documentation for hints on how to disable only the button if you need the extension otherwise. See GitHub - manics/jupyter-offlinenotebook: Save and load notebooks to local-storage
Spotted it. Nice! Thanks — the “offline” made me not even look.