[Jupyter](https://jupyter.org/) notebooks can run [[Python]] code, and more.
## Install
Install Jupyter as a dev dependency using [[Poetry]].
```sh
poetry add --group dev jupyter
```
Create a minimal, valid notebook.
```sh
echo '{
"cells": [],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5
}' > path_to_notebook.ipynb
```
## Run
Start the notebook on a custom port.
```sh
jupyter notebook ${path_to_notebook.ipynb} --port 8890
```
## Alternatives
- https://marimo.io/