Documentation
WebsiteMineGitHubFaucet
  • Welcome to MakeOS
  • Introduction
    • Install
    • Quick Start
    • Set Up a Private Network
    • Get Test Coins
    • Track a Repository
    • What is MakeOS
    • How it Works
    • Tokenomics ($MAKE)
    • Dilithium (Deprecated)
    • Roadmap
    • Team
  • Concepts
    • Repository
      • Register a Repository
      • Initialize a New Repository
      • Repository Governance
      • Access Control Config
    • Namespace
    • Key
    • Issue Management
    • Merge Request
    • Transactions
      • Register a Repository
      • Send Coins
    • Validator
    • Host
    • Remote
  • JavaScript Console API
    • repo
    • pushkey
    • namespace
    • node
    • user
    • transaction
    • ticket
  • KIT CLI Reference
    • Overview
    • init
    • start
    • console
    • attach
    • key
      • create
      • gen
      • get
      • import
      • list
      • update
    • tx
      • get
    • repo
      • config
      • create
      • hook
      • init
      • vote
    • user
      • send
    • pk
      • register
    • sign
      • commit
      • note
      • tag
    • contributor
      • add
    • issue
      • close
      • create
      • list
      • read
      • reopen
      • status
    • mr
      • checkout
      • close
      • create
      • fetch
      • list
      • read
      • reopen
      • status
Powered by GitBook
On this page
  • Homebrew:
  • Pre-built Binaries
  • Build From Source
  • Install Dependencies

Was this helpful?

  1. Introduction

Install

Kit is the official reference client for interacting with the MakeOS network and blockchain. Depending on your platform, there are several ways to install it.

PreviousWelcome to MakeOSNextQuick Start

Last updated 4 years ago

Was this helpful?

Homebrew:

For macOS or Linux users, you can get Kit by using the package manager.

brew tap make-os/kit 
brew install kit

Pre-built Binaries

For platforms with no support for Homebrew, you can download a pre-built binary from our GitHub page.

There are binaries for macOS, Windows and Linux systems. Unzip the tarball file, add the kit or kit.exe executable in your PATH.

Git is required and must be in your PATH. Git version must be >= v2.11.0. Click to download and install the latest git release.

Add `kit` executable to your PATH

Git interacts with Kit to perform signing and push operations. You must addkitto your system PATH to allow git to find it.

Build From Source

If you prefer to build from the official source, you can do this by downloading the source from .

You will need to install the following [dependencies](#install-dependencies) to successfully run the commands below.

# Fetch source using go get
go get github.com/make-os/kit

# Check into Kit's source directory
cd path/to/kit

# Install dependencies and build Kit
make install

Install Dependencies

If you are building from source, you must have the following dependencies installed.

  • Go (go1.14 or later)

  • Git

  • GNU Make

Homebrew
release
here
GitHub