go-ethereum 安装

安装 (mac环境)

  1. 从源代码编译安装:
    GitHub 下载最新的版本, 比如 v1.8.2.zip

    1
    2
    3
    4
    unzip -d v1.8.2.zip ./go-ethereum
    cd go-ethereum
    make geth
    cd build/bin

    build/bin配置到path环境变量中.

  2. 不同的操作系统, 也可以借助其他的一些工具安装:

    1
    2
    3
    # Homebrew on Mac OSX
    brew tap ethereum/ethereum
    brew install ethereum
  3. 其他环境
    其他的操作系统可以参考官方文档安装: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum

测试

通过下面命令打开geth的JavaScript控制台:

1
geth console