Installation
bino is a command-line tool for building pixel-perfect PDF reports from YAML and SQL. This page shows how to install the binary on common platforms and confirm that everything works.
Supported platforms
Section titled “Supported platforms”bino provides pre-built binaries for:
- macOS (Intel, Apple Silicon)
- Linux x86_64
- Windows x86_64
Install from GitHub Releases (recommended)
Section titled “Install from GitHub Releases (recommended)”-
Open the bino GitHub repository in your browser and go to the Releases page.
-
Download the archive that matches your platform, for example:
bino-rainbow_Darwin_x86_64.tar.gzbino-rainbow_Darwin_arm64.tar.gzbino-rainbow_Linux_x86_64.tar.gzbino-rainbow_Windows_x86_64.zip
-
Unpack the archive:
# macOS / Linux tar -xzvf bino-rainbow_Darwin_x86_64.tar.gz # or tar -xzvf bino-rainbow_Linux_x86_64.tar.gzOn Windows, extract the
.zipusing File Explorer or a tool like 7-Zip. -
Move the
bino(orbino.exe) binary onto yourPATH:# macOS / Linux (example) mv bino /usr/local/bin/On Windows, either place
bino.exein a folder that is already on%PATH%or add its folder to the system/userPATH. -
Verify the installation:
bino versionThis should print the installed version and exit with status code 0.
Install from source using Go tooling
Section titled “Install from source using Go tooling”If you have Go installed and prefer to build from source, you can use:
go install bino.bi/rainbow/cmd/bino@latestThis is mainly useful for contributors or environments without access to GitHub Releases.
Next steps
Section titled “Next steps”- Continue with Your first report to scaffold and build a sample report.
- See the CLI overview for a quick tour of available commands.