Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.1 KB

2 Install.md

File metadata and controls

32 lines (21 loc) · 1.1 KB

Install Starport

Prerequisites: If you want to install Starport locally, make sure to have Golang >=1.14. The latest version of Starport also requires Protocol Buffer compiler to be installed. Node.js >=12.19.0 is used to build the welcome screen, block explorer and to run the web scaffold.

To install Starport:

curl https://i.jpillora.com/tendermint/starport! | bash

This command will download the latest starport binary from Github and install it into /usr/local/bin. To learn more about how to install previous versions of the binary, refer to the documentation.

macOS with Homebrew

brew install tendermint/tap/starport

Build from source

git clone https://github.com/tendermint/starport && cd starport && make

This will build and install starport binary into $GOBIN.

Note: When building from source, it is important to have your $GOPATH set correctly. When in doubt, the folllowing should do:

mkdir ~/go
export GOPATH=~/go