BFir
BFir

Reputation: 353

How to hide time of execution in Jupyter cells in Visual Studio Code?

I am following a course on Python and Math. As editor I use Jupyter notebooks in VS Code. I am not able to eliminate (or hide) the time of execution shown in each cell. I searched in Settings, but did not find the relative option. Could you help, please? Thanks. enter image description here

Upvotes: 7

Views: 3166

Answers (3)

TallguyTYO
TallguyTYO

Reputation: 101

This now exists in VS Code's 'clickable' settings screen (as opposed to editing the settings.json file.

Search settings for the below, and select 'hidden' from the dropdown.

notebook.showCellStatusBar

Upvotes: 10

Rafael Cardoso
Rafael Cardoso

Reputation: 161

Just put this parameter in the settings.json:

"notebook.showCellStatusBar": "hidden"

Upvotes: 4

Leo
Leo

Reputation: 1

I have the same question. I only found this enhancement issue on github. It does seem like they did not think of a option to disable it.

For now just switch back to normal Jupyter notebooks.

Upvotes: 0

Related Questions