From source
Prerequisites
The CLI installation guide needs two requirements.
Golang 1.20+
Terminal or any command line interface of your choice
Setup the repository
Build
The following instructions work for macOS, Linux, and Windows.
Using Task is the easiest way to build the wallet.
Install Task:
go install github.com/go-task/task/v3/cmd/task@latest
Add ~/go/bin to your path:
Linux and macOS:
export PATH="$PATH:$(go env GOPATH)/bin"
Checkout the version you want to build:
git checkout v0.5.0
Execute the task:
GUI:
task build-app
CLI:
task build-cli
This will create an executable or app bundle in the repository root.
Last updated