jupyterlab-execute-time although installed does not function in the notebok with jupyterlab 2.2.0a0

Viewed 1072

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?

1 Answers

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.

Related