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

git clone https://gitlab.com/accumulatenetwork/core/wallet.git
cd wallet

Build

The following instructions work for macOS, Linux, and Windows.

Using Task is the easiest way to build the wallet.

  1. Install Task: go install github.com/go-task/task/v3/cmd/task@latest

  2. Add ~/go/bin to your path:

    • Linux and macOS: export PATH="$PATH:$(go env GOPATH)/bin"

  3. Checkout the version you want to build:

    • git checkout v0.5.0

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