Reputation: 149
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!
Upvotes: 7
Views: 3559
Reputation: 61
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.
Upvotes: 6
Reputation: 191
The following worked for me on Mac from terminal
rm -r path_to_anaconda/pkgs/nbpresent*
in my case rm -r ~/anaconda3/pkgs/nbpresent*
Upvotes: 0
Reputation: 3717
Remove nbpresent
:
conda remove nbpresent
Then refresh your notebook page by ctrl+shift+r
(refreshes stored cache in browser).
Upvotes: 6
Reputation: 144
The presentation toolbar can be a bit annoying when you don't need it. Here is what I came with to toggle it at runtime. Put the following code in one cell on your notebook and execute it whenever you want to hide or show the toolbar.
%%javascript
$('.nbp-app-bar').toggle()
This change is not permanent (does not survive a page reload), which is a good thing IMO.
Upvotes: 4