Skip to content

Installation

Prerequisites

  • Dyalog APL v20.0 or later — required to use the generated client code

Download and Setup

Download the latest binary for your platform from the GitHub Releases page.

Architecture File
x64 (most common) openapidyalog-win-x64.exe
ARM64 openapidyalog-win-arm64.exe

No additional setup is required. You can run the binary directly from any terminal.

To make it available from anywhere, move it to a directory on your PATH, for example C:\Windows\System32, or add its containing folder to your PATH in System Settings.

Confirm the tool is working:

openapidyalog-win-x64.exe --help
Architecture File
x64 (most common) openapidyalog-linux-x64
ARM64 openapidyalog-linux-arm64

Mark the binary as executable:

chmod +x openapidyalog-linux-x64

Optionally, move it onto your PATH so it can be run from anywhere:

mv openapidyalog-linux-x64 /usr/local/bin/openapidyalog

Confirm the tool is working:

openapidyalog --help
Architecture File
Apple Silicon (M-series) openapidyalog-osx-arm64
Intel openapidyalog-osx-x64

macOS quarantines binaries downloaded from the internet. Remove the quarantine attribute before running:

xattr -d com.apple.quarantine openapidyalog-osx-arm64

Then mark it as executable:

chmod +x openapidyalog-osx-arm64

Optionally, move it onto your PATH so it can be run from anywhere:

mv openapidyalog-osx-arm64 /usr/local/bin/openapidyalog

Confirm the tool is working:

openapidyalog --help