Skip to content

Installation Instructions for FreeBSD

Kedia edited this page Mar 11, 2018 · 2 revisions

Building from source

Building Gvap (command line client)

Clone the repository to a directory of your choosing:

git clone https://github.com/vaporyco/go-vapory

Building gvap requires the Go compiler:

pkg install go

If your golang version is >= 1.5, build the gvap program using the following command.

cd go-vapory
make gvap

If your golang version is < 1.5 (quarterly packages, for example), use the following command instead.

cd go-vapory
CC=clang make gvap

You can now run build/bin/gvap to start your node.

Clone this wiki locally