Extension installed via pip, but timing does not show
See original GitHub issueI installed jupyterlab-execute-time
via pip successfully:
~ % pip3 list | grep jupyter
jupyter-client 7.3.4
jupyter-core 4.10.0
jupyter-server 1.17.1
jupyterlab 3.4.3
jupyterlab-execute-time 2.1.0
jupyterlab-pygments 0.2.2
jupyterlab-server 2.14.0
However timing information does not appear under the cells:
recordTiming
is set to true
in the settings and timing does appear in the cell metadata, like
{
"tags": [],
"execution": {
"iopub.status.busy": "2022-06-18T05:14:53.304459Z",
"iopub.execute_input": "2022-06-18T05:14:53.306176Z",
"iopub.status.idle": "2022-06-18T05:14:53.321343Z",
"shell.execute_reply.started": "2022-06-18T05:14:53.305443Z",
"shell.execute_reply": "2022-06-18T05:14:53.320273Z"
}
}
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:5 (3 by maintainers)
Top Results From Across the Web
jupyterlab-execute-time although installed does not function in ...
I'm running it in Conda, on macOS Catalina. — As I side note, while I was installing the extension my computer crashed, it...
Read more >New resolver takes a very long time to complete #9187 - GitHub
If pip is taking longer to install packages, read Dependency resolution backtracking for ways to reduce the time pip spends backtracking due to ......
Read more >Jupyter Notebook extensions - Towards Data Science
There are better methods for timing (such as the %%timeit cell magic) but this is easy to implement and covers all cells in...
Read more >Profiling and Timing Code | Python Data Science Handbook
%mprun : Run code with the line-by-line memory profiler. The last four commands are not bundled with IPython–you'll need to get the line_profiler...
Read more >10 Jupyter Notebook Extensions Making My Lyfe Easier
The timing information not only allows you to quickly gage how long it will take to re-run the cell, but it also allows...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Same problem on the
conda
-side of things - timings don’t show up at all.Wasn’t showing for me on
either, but as it turns out, even though I set
recordTiming
to true manually, there was another line hiding later in my config where it was set to false, deleting solved it, might be worth checking out