Windows
Install OSIRIS JSON Producers
Pre-built binaries are available on the Releases page for Linux, macOS and Windows. No Go toolchain is required.
Download
Section titled “Download”Pick the archive for your OS and architecture, or install directly with Go (see Install via Go below):
Archive:
tar -xzf osiris-producers_<version>_linux_amd64.tar.gzsudo mv osirisjson-producer /usr/local/bin/osirisjson-producer --versionDebian / Ubuntu (.deb):
sudo dpkg -i osiris-producers_<version>_linux_amd64.debosirisjson-producer --versionRHEL / Fedora / CentOS (.rpm):
sudo rpm -i osiris-producers_<version>_linux_amd64.rpmosirisjson-producer --versionHomebrew (recommended):
brew tap osirisjson/osiris-producersbrew install osirisjson-producerHomebrew handles quarantine automatically - no Gatekeeper warning, no extra steps.
Archive (alternative):
tar -xzf osiris-producers_<version>_darwin_arm64.tar.gzsudo mv osirisjson-producer /usr/local/bin/Gatekeeper warning (archive installs only)
Section titled “Gatekeeper warning (archive installs only)”macOS Gatekeeper will block the binary on first run because it is not yet notarized with an Apple Developer certificate. You will see:
osirisjson-producer cannot be opened because the developer cannot be verified.
Fix - command line (one-time, recommended):
xattr -d com.apple.quarantine /usr/local/bin/osirisjson-producerFix - Finder:
Right-click the binary -> Open -> click “Open” in the dialog. macOS remembers the exception after the first run.
After applying either fix, the binary runs normally with no further prompts.
Windows
Section titled “Windows”Extract the .zip archive and move osirisjson-producer.exe to a directory
on your %PATH%. A user-writable location that works without admin rights:
%LOCALAPPDATA%\Programs\osirisjson\To add it to your PATH permanently (no admin required):
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$env:LOCALAPPDATA\Programs\osirisjson", "User")Windows SmartScreen warning
Section titled “Windows SmartScreen warning”Windows SmartScreen may show “Windows protected your PC” on first run because the binary is not yet signed with a commercial certificate.
Fix:
- Click More info
- Click Run anyway
Alternatively, right-click osirisjson-producer.exe -> Properties ->
check the Unblock box at the bottom -> OK. After that the binary runs
without any prompt.
Verify the download
Section titled “Verify the download”Each release includes a osiris-producers_<version>_checksums.txt file.
Verify the archive before extracting:
# Linux / macOSsha256sum -c osiris-producers_<version>_checksums.txt --ignore-missing
# Windows (PowerShell)Get-FileHash osiris-producers_<version>_windows_amd64.zip -Algorithm SHA256Compare the output against the matching line in checksums.txt.
Install via Go (if you have Go 1.22+)
Section titled “Install via Go (if you have Go 1.22+)”go install go.osirisjson.org/producers/cmd/...@latestThis installs all binaries at once.
Quick start
Section titled “Quick start”Full documentation: Getting Started