PJ_
PJ_

Reputation: 643

How to show timestamp of when cell was last run in Jupyter VS code?

Jupyter in VScode shows the cell execution time like this:

'1.9s'

but I would like a way to timestamp when the cell was run:

'1.9s on 4/28/22 10:30:05'

I had this function in Jupyter in the browser with an extension, but haven't found a way to show it in VSCode. Any ideas?

Upvotes: 11

Views: 3700

Answers (2)

Nodtem66
Nodtem66

Reputation: 183

In VSCode 1.96 with Jupyter extension (2024.11.0, ms-toolsai.jupyter), you can check the related details like timestamp by hovering cursor over the execution time at the end of the cell.

screenshot of popup showing execution time

Upvotes: 1

MingJie-MSFT
MingJie-MSFT

Reputation: 9437

I'm sorry to tell you that this function cannot be implemented at present. You can query the request of this function in GitHub.

Because the same function is also implemented in the form of extension on jupyter notebook, which means that the official has not yet started to do relevant content, so we'd better wait.

Upvotes: 6

Related Questions