Reputation: 41009
I am using Jupyter Notebook 5.2.2 on Amazon AWS for the first time. When I run a Notebook in my browser (Mac OS Safari 11.0), I see buttons at the bottom of the Notebook. The buttons are for Present, Slides, Themes, and Help. I previously have been using Notebook 4.x and have never seen them before. How do I get rid of these buttons?
Here is my Jupyter Notebook "About" information:
Upvotes: 3
Views: 1489
Reputation: 1891
I was able to disable these buttons by executing the following command in the conda environment from which I was running the jupyter notebook where they had appeared:
jupyter-nbextension disable nbpresent --py --sys-prefix
I think you can run the jupyter-nbextension
command outside of a conda environment with the same effect though. You might as well not be using conda as you don't mention it, but the AWS machine you are using might have the extensions installed by default. I am unsure about this.
For me, conda's notebook extensions were installed after I executed conda install nb_conda
in order to have access to conda environments in my notebooks.
(see In which conda environment is Jupyter executing?)
Hope this helps.
Upvotes: 4