Common Workflows
This page collects the command-line tasks you are likely to repeat in daily use.
Set up a machine
pip install -U runicorn
runicorn config --set-user-root "E:\RunicornData"
runicorn config --show
runicorn viewer
Export runs for backup
Use this when you want an archive for transfer or backup outside the viewer.
Import a transferred archive
The current Web UI also offers a richer import-preview flow, but the CLI is still useful for scripted transfers.
Export metrics for reports
runicorn export-data --run-id 20260115_100000_abc123 --format csv
runicorn export-data --run-id 20260115_100000_abc123 --format html --output report.html
Tag, search, and clean up
runicorn manage --action tag --run-id 20260115_100000_abc123 --tags baseline,resnet50
runicorn manage --action search --project cv --text baseline
runicorn manage --action cleanup --days 30 --dry-run
Permanently delete runs
Preview first:
Then confirm:
Rate-limit inspection
Most users do not need to change this, but it matters when you package Runicorn into a more controlled environment.