Skip to content

Examples

Interactive marimo notebooks organized by purpose: Tutorials walk through concepts step-by-step, while How-to Guides solve specific tasks.

Running Examples Locally

All examples are marimo reactive notebooks stored as .py files. Run them interactively or as scripts:

# Open a specific example for interactive editing
just example optuna_search.py
# Interactive editing (recommended)
uv run marimo edit examples/optuna_search.py

# Run as a non-interactive script
uv run marimo run examples/optuna_search.py

Replace optuna_search.py with any example filename from the gallery above.

Next Steps