5

After I select run all, run all above, or run all below in a Jupyter notebook, how can I view how much time each cell took to run?

My question is different from Simple way to measure cell execution time in ipython notebook as I want the running times for all cells, not just one. I.e., if the notebook contains 10 cells I want 10 running times.

Franck Dernoncourt
  • 77,520
  • 72
  • 342
  • 501

2 Answers2

7

Install and enable ExecuteTime nbextension: "Display when each cell has been executed and how long it took".

Installation and configuration details are here.

stason
  • 5,409
  • 4
  • 34
  • 48
5

I believe only by putting magic function %%time

vishes_shell
  • 22,409
  • 6
  • 71
  • 81