3

I have installed jupterlab version 2.2.0a0 and the extension jupyterlab-execute-time.

enter image description here

enter image description here

However when I run a cell the execution time is not reported:

enter image description here

What should I do?

user8270077
  • 4,621
  • 17
  • 75
  • 140
  • You're not alone... happens to me too. I'm running it in Conda, on macOS Catalina. — As I side note, while I was installing the extension my computer crashed, it could be that it made it crash or maybe the crash broke it, I also had a Firefox update pending, which I've seen makes stuff unstable, not sure why. – loco.loop Aug 05 '20 at 22:44
  • See: https://stackoverflow.com/questions/56843745/automatic-cell-execution-timing-in-jupyter-lab/61159513#61159513. Most likely the record timing flag is not set. – mlucool Nov 27 '20 at 12:34

1 Answers1

2

Following the solution in this thread

You need to enable cell timing in the notebook via Settings->Advanced Settings Editor->Notebook: {"recordTiming": true}

After this, it should work properly.

Dinis Rodrigues
  • 558
  • 6
  • 19
  • I don't see "Notebook" section in my Advanced Settings Editor. There is "Notebook Panel" instead. Note that I have the following: > 1. JupyterLab v3.6.3 > 2. jupyterlab_execute_time v3.0.0 > 3. Python 3.10 – Prasun Kumar Khan Jul 05 '23 at 12:11