Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Viewer
✓ from rerun_notebook import Viewer
✗ from rerun_notebook import RerunWidget
Initialize Rerun in a Jupyter notebook and display the viewer widget. Requires rerun-sdk to be installed.
import rerun as rr
import rerun_notebook
# Initialize rerun for notebook context
rr.init("my_app", spawn=True)
# Log a simple point
rr.log("points", rr.Points3D([[0, 0, 0], [1, 1, 1]]))
# Display the widget (in Jupyter)
rerun_notebook.RerunWidget()
Debug
Known issues
breakingIn rerun-notebook 0.16+, the widget import path changed. Old: `from rerun_notebook.widget import RerunWidget`. New: `from rerun_notebook import RerunWidget`.fixUse `from rerun_notebook import RerunWidget`.
affects: >=0.16.0
gotcharerun-notebook requires Jupyter Notebook or JupyterLab; does not work in other frontends natively.fixInstall and use with Jupyter (pip install notebook or jupyterlab) and ensure ipywidgets is enabled.
affects: all
deprecatedThe `spawn=True` argument in `rr.init()` is deprecated in rerun-sdk 0.18+. Use `spawn=False` and call `rr.notebook_show()` instead.fixUse `rr.init("my_app")` then `rr.notebook_show()`. affects: rerun-sdk >=0.18
Upgrade
Version history
0.33.0latest on PyPI · released May 29, 2026
Audit
Dependencies
rerun-sdkrequiredcore dependency for logging and visualization
ipywidgetsoptionalrequired for notebook widget integration
Resources
No resource links recorded.