-
Notifications
You must be signed in to change notification settings - Fork 21.5k
Installation Instructions for Mac
caktux edited this page Jul 7, 2015
·
9 revisions
By far the easiest way to install go-ethereum is to use our Homebrew tap. If you don't have Homebrew, install it first.
Then run the following commands to add the tap and install geth:
brew tap ethereum/ethereum
brew install ethereumYou can install the develop branch by running --devel:
brew install ethereum --develAfter installing, run geth account new to create an account on your node.
You should now be able to run geth and connect to the network.
Make sure to check the different options and commands with geth --help
For options and patches, see: https://github.com/ethereum/homebrew-ethereum
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:
brew install gmp goFinally, build the geth program using the following command.
cd go-ethereum
make gethYou can now run build/bin/geth to start your node.