1、安装go等必须的软件
brew install go
2、设置gopaht环境变量
export gopath=PAHT_TO_GOPATH #然后在gopath下创建下面的目录 PAHT_TO_GOPATH/src/github.com/ethereum/ #设置必要的代理信息 export http_proxy=xxxx:xx export https_proxy=xxxx:xx export no_proxy="localhost, 127.0.0.1, 192.168.99.100, 根据你自己的实际情况进行处理"
3、下载源码
cd PAHT_TO_GOPATH/src/github.com/ethereum/ git clone https://github.com/ethereum/go-ethereum.git
4、编译
cd go-ethereum make geth