Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide/remove the presentation toolbar in the bottom of page in the jupyter notebook (v5.2.2)?

After I updated to the latest version of Jupyter Notebook (v5.2.2), there is a "presentation" toolbar in the bottom of the page as below: my screenshot. I googled a while, but it seems no one discussed about it. Is there any way to remove it? Thanks a lot!

like image 733
skippyho Avatar asked Dec 15 '17 15:12

skippyho


People also ask

How do I hide code in Jupyter Notebook presentation?

There are two ways to hide content: To hide Markdown, use the {toggle} directive. To hide or remove code cells or their outputs, use notebook cell tags.

How do I get my Jupyter Notebook toolbar back?

Go to view, you can see Header and toolbar. If you can't see header, click view header and If you can't see toolbar, click view toolbar.

Where is toolbar in Jupyter Notebook?

Getting to Know your Jupyter Notebook's Toolbar. At the top of your Jupyter Notebook window there is a toolbar.


2 Answers

Remove nbpresent:

conda remove nbpresent

Then refresh your notebook page by ctrl+shift+r (refreshes stored cache in browser).

like image 67
Rishabh Agrahari Avatar answered Sep 24 '22 02:09

Rishabh Agrahari


nbpresent can be disabled in the following way as anaconda docs says:

jupyter-nbextension disable nbpresent --py --sys-prefix jupyter-serverextension disable nbpresent --py --sys-prefix It works on my jupyter notebook.

like image 37
PrimoLuce Avatar answered Sep 23 '22 02:09

PrimoLuce