Skip to main content
A snapshot is a saved state that a sandbox boots from. Because the environment (OS, libraries) is already set up inside the snapshot, booting skips installation entirely. Each snapshot ships with a matching ahead-of-time translation module. If the bundled module doesn’t match the snapshot, the SDK prints a warning — the sandbox still works, but runs at interpreter speed.

Available snapshots

uv comes preinstalled in every snapshot, so additional Python packages can be installed with uv pip install --system <package>. System packages remain available through Alpine’s package manager with apk add <package>.

Snapshot API