| title | Quickstart |
|---|---|
| description | The shortest path to running the BASE CLI and computing a weight vector without touching the chain. |
This quickstart gets the canonical base repository running locally and computes a weight vector with the CLI, all in dry-run so nothing is submitted on-chain. It is the fastest way to confirm your environment works before you follow a full role guide.
- A Python runtime and the
uvpackage manager. - A clone of the canonical
baserepository.
```bash
uv sync --extra dev --extra master
```
The full local check (lint, types, tests) is documented alongside this command in the repository README.
```bash
uv run platform --help
```
```bash
uv run platform master weights --once --dry-run
```
The command echoes `compute-only: computed <N> weights`. See [how it works](/concepts/how-it-works) for what that vector represents.