Skip to content
LearnNewsroom Created with Sketch.
Try OSIRIS

Install OSIRIS JSON Producers

Pre-built binaries are available on the Releases page for Linux, macOS and Windows. No Go toolchain is required.

Pick the archive for your OS and architecture, or install directly with Go (see Install via Go below):

Archive:

Terminal window
tar -xzf osiris-producers_<version>_linux_amd64.tar.gz
sudo mv osirisjson-producer /usr/local/bin/
osirisjson-producer --version

Debian / Ubuntu (.deb):

Terminal window
sudo dpkg -i osiris-producers_<version>_linux_amd64.deb
osirisjson-producer --version

RHEL / Fedora / CentOS (.rpm):

Terminal window
sudo rpm -i osiris-producers_<version>_linux_amd64.rpm
osirisjson-producer --version

Homebrew (recommended):

Terminal window
brew tap osirisjson/osiris-producers
brew install osirisjson-producer

Homebrew handles quarantine automatically - no Gatekeeper warning, no extra steps.

Archive (alternative):

Terminal window
tar -xzf osiris-producers_<version>_darwin_arm64.tar.gz
sudo 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):

Terminal window
xattr -d com.apple.quarantine /usr/local/bin/osirisjson-producer

Fix - 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.

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):

Terminal window
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$env:LOCALAPPDATA\Programs\osirisjson", "User")

Windows SmartScreen may show “Windows protected your PC” on first run because the binary is not yet signed with a commercial certificate.

Fix:

  1. Click More info
  2. 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.

Each release includes a osiris-producers_<version>_checksums.txt file. Verify the archive before extracting:

Terminal window
# Linux / macOS
sha256sum -c osiris-producers_<version>_checksums.txt --ignore-missing
# Windows (PowerShell)
Get-FileHash osiris-producers_<version>_windows_amd64.zip -Algorithm SHA256

Compare the output against the matching line in checksums.txt.

Terminal window
go install go.osirisjson.org/producers/cmd/...@latest

This installs all binaries at once.

Full documentation: Getting Started