forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation Instructions for FreeBSD
kisscool edited this page Aug 27, 2015
·
1 revision
Clone the repository to a directory of your choosing:
git clone https://github.com/ethereum/go-ethereumBuilding geth requires some external libraries to be installed:
pkg install gmp goIf your golang version is >= 1.5, build the geth program using the following command.
cd go-ethereum
make gethIf your golang version is < 1.5 (quarterly packages, for example), use the following command instead.
cd go-ethereum
CC=clang make gethYou can now run build/bin/geth to start your node.