jupyter -toolbar is invisible
Asked Answered
Z

6

7

I newly downloaded a jupyter and try to use it. However, with my mac and window computer, I cannot see the toolbar in jupyter.

I tried to search to solve this issue and I tried to uninstall every version of python on my computers, both on mac and window one, and reinstall the jupyter.

However, I still see the same problem. Can someone help me do deal this issue?

Thank you.

enter image description here

Zealotry answered 21/4, 2017 at 16:48 Comment(1)
Does this answer your question? Toolbar not visible after setting jupyter notebook themePolson
F
8

It happened to me as well, and in my case it was much more simple answer. It can be shown/hidden with the "View/Toggle Toolbar" menu.
View/Toggle Toolbar

Fugacity answered 17/4, 2018 at 4:12 Comment(0)
O
7

You're not seeing the toolbar because to Jupyter, you're opening a file. If you want to run Python code, you need to create a new Notebook. This will create an .ipynb file, in which Jupyter can run Python code. Jupyter cannot run .py files from the web interface.

Oscilloscope answered 2/8, 2017 at 13:39 Comment(1)
Thank you. That makes sense, it was driving me crazy :)Duvetyn
P
5

edit ~/.jupyter/custom/custom.css. I changed the mailtoolbar setting from ’none’ to ‘block’. i.e. find this line:

div#maintoolbar {
    display: none !important;
}

...and change it to:

div#maintoolbar {
    display: block !important;
}
Polson answered 26/12, 2020 at 0:42 Comment(0)
F
2
!pip install jupyterthemes
import jupyterthemes as jt

!jt -r

this will throw the output like this
Reset css and font defaults in: /Users/malaudeen/.jupyter/custom & /Users/malaudeen/Library/Jupyter/nbextensions

Finally
refresh your browser.

Now: It can be shown/hidden with the "View/Toggle Toolbar" menu.

Foamflower answered 20/6, 2021 at 7:41 Comment(0)
S
0

this was my problem also. I got a list of python files but no toolbar. BUT to the extreme right are 3 buttons a reload-symbol and one marked 'new' I selected Python 3 and lo and behold the menu appear at the top of the file. Loading a python program into the note book did not reveal the tool bar !

Styles answered 1/12, 2019 at 11:27 Comment(0)
R
0

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.

Renell answered 27/10, 2022 at 18:40 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.