Skip to main content
Start with the Runloop Quickstart to use the examples below.

Standard architecture

Runloop Devboxes default to x86_64 architecture. You can specify either x86_64 or arm64 explictly to choose the architecture for launched devboxes.
devbox = await runloop.devboxes.create(
  name="architecture-box",
  launch_parameters={"architecture": "x86_64"},
)

Incorrect usage: Mixing architectures between blueprints and devboxes

Blueprints created on x86_64 will not work on arm64 devboxes and vice-versa. If you do not specify an architecture for your Blueprint, Runloop will default to x86_64.