AudisAIAudisAI
Guide

Installation

How to install AudisAI on your machine.

Installation

AudisAI is written in Go and can be installed as a standalone binary or built from source.

Pre-compiled Binaries

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

Available binaries:

  • macOS (Intel & Apple Silicon)
  • Linux (amd64, arm64)
  • Windows (amd64)

After downloading, extract the archive and add the binary to your system PATH.

Install via Go

If you have Go installed (1.21+), you can install AudisAI directly:

go install github.com/nuulab/audisai@latest

Ensure your GOPATH bin directory is in your system PATH.

Build from Source

You can clone the repository and build the binary manually:

git clone https://github.com/nuulab/audisai.git
cd audisai
go build -o audisai main.go

Verify Installation

Check that the installation was successful by checking the version:

audisai version

On this page