安装 (mac环境)
从源代码编译安装:
在 GitHub 下载最新的版本, 比如 v1.8.2.zip1
2
3
4unzip -d v1.8.2.zip ./go-ethereum
cd go-ethereum
make geth
cd build/bin将
build/bin
配置到path
环境变量中.不同的操作系统, 也可以借助其他的一些工具安装:
1
2
3# Homebrew on Mac OSX
brew tap ethereum/ethereum
brew install ethereum其他环境
其他的操作系统可以参考官方文档安装: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum
测试
通过下面命令打开geth
的JavaScript控制台:1
geth console