Ship a model from research to audited production without an engineering hand-off. Answer your
next LP operational due-diligence questionnaire from screenshots in the UI. Run in our managed
GCP — or in your own, with BYOC.
1. Install pq
macOS or Linux:
curl -fsSL https://pyquant.io/install.sh | bash
Windows (PowerShell):
irm https://pyquant.io/install.ps1 | iex
The installer puts the pq binary on your PATH and prints the version on
success. Re-run the same command any time to upgrade.
2. Verify your environment (optional)
pq doctor # checks runtime prerequisites and port availability
Run this if pq up fails or before you start, to confirm your machine is ready. Skip
it on a known-good setup.
3. Run hello world
pq up # starts pyquant locally
pq new hello-world # scaffolds the strategy in the current directory
cd hello-world
pq run # trains the model and records the run
pq up prints the URL of the platform UI when it finishes. Open it to see your strategy
registry, the run detail (metrics, parameters, model artefact, walk-forward evidence, PBO/DSR),
and the audit log.
Run pq down when you're finished.
4. Iterate on your strategy
Inside any strategy directory, pq e2e runs the full pre-push battery — lint, type check,
unit tests, and a containerised run — so you catch the same issues CI would before you push.
pq e2e # lint + type check + tests + containerised run