Install from Go Source Code

Prerequisite

Go

To install the AILERON Gateway from source code, GO must be installed on your environment.

Follow the Download and install GO to install Go and make sure go command is available on your environment.

$ go version
go version go1.24.0 linux/amd64

Install

Install the latest

Use @latest version. This command downloads source codes and build an AILERON Gateway binary on local environment.

go install github.com/aileron-gateway/aileron-gateway/cmd/aileron@latest

Install from branch

Use @<branch name> version. This command downloads source codes from the specified branch and build an AILERON Gateway binary on local environment.

This command installs from source codes in the main branch.

go install github.com/aileron-gateway/aileron-gateway/cmd/aileron@main

Install from tag

Use @<tag name> version. This command downloads source codes from the specified tag and build an AILERON Gateway binary on local environment.

This command installs from source codes at v1.0.0 tag.

go install github.com/aileron-gateway/aileron-gateway/cmd/aileron@v1.0.0

Other options

See go install documentation.


Last modified March 17, 2025: init (248d310)