Skip to content
Advertisement

Jupyter Lab Render button disable

enter image description here

There is a green button call ‘Render with panel ‘ in my ‘Jupyer lab’ and I’m trying to get rid of it, not sure where its come from.

Things I’ve tried:

https://discourse.jupyter.org/t/how-can-i-disable-an-extension-in-jupyterlab-3/9332/2 the jupyter labextension disable didn’t work

Advertisement

Answer

That icon comes from the Panel Extension, ‘Panel: A high-level app and dashboarding solution for Python’. It’s part of their visual branding as you should see a larger version in the upper left corner the there.

(Under ‘Things I’ve tried:’, you don’t actually include the specific command you tried running.). To try and disable it:
Did you try based on here and that suggestion you highlighted under ‘Things I’ve tried’, the following?

jupyter labextension disable @pyviz/jupyterlab_pyviz

According to a Jupyter Discourse thread by another person puzzling over that icon and how to get rid of it that should work. In fact, I just tried running that command in a terminal in a MyBinder-provided session launched from here & after running it and refreshing the browser window, the panel icon disappeared from the bar at the top of notebooks.

You could surely get rid of it by making an environment for your Jupyter where you don’t install it. And then work there.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement