Creating the virtual environment for the tutorials could be made easier by attaching a requirements.txt or quoting a series of commands with all the dependencies.
E.g.
Windows:
uv python pin cpython-3.9.23-windows-x86_64-none # tested on 3.8, 3.9, 3.10...
uv venv
source .venv/Scripts/activate
# Jupyter notebook only
uv pip install pip ipykernel
# Jupyter notebook or Python script
uv pip install 'dask-image==<tested_version>' ...
Linux/MacOS:
uv python pin cpython-3.9.23-... # tested on 3.8, 3.9, 3.10...
uv venv
source .venv/bin/activate
# Jupyter notebook only
uv pip install pip ipykernel
# Jupyter notebook or Python script
uv pip install 'dask-image==<tested_version>' ...