美文网首页
MacOS 安装Go-ethereum

MacOS 安装Go-ethereum

作者: 陈友辉 | 来源:发表于2018-03-24 23:57 被阅读85次

    一、使用homebrew安装(最简单方便)

    使用以下命令来安装go-ethereum

    brew tap ethereum/ethereum
    brew install ethereum
    
    Tips:可能会遇到以下情况
    git clone https://github.com/ethereum/go-ethereum
    Cloning into 'go-ethereum'...
    remote: Counting objects: 72199, done.
    remote: Compressing objects: 100% (42/42), done.
    error: RPC failed; curl 18 transfer closed with outstanding read data remaining
    fatal: The remote end hung up unexpectedly
    fatal: early EOF
    fatal: index-pack failed
    
    下载源码失败

    是因为git设置的仓库的最大下载值(默认是10M貌似)

    解决方式1:

    通过以下代码可以更改最大阀值为500M (请自己酌情修改)

    git config --global http.postBuffer 524288000
    

    解决方式2:

    使用ssh的地址来执行git clone

    二、下载源码编译

    1、克隆仓库代码到本地

    git clone https://github.com/ethereum/go-ethereum
    

    2、安装go语言

    brew install go
    

    3、编译

    cd go-ethereum
    make geth
    

    初学智能合约,欢迎私信交流~

    相关文章

      网友评论

          本文标题:MacOS 安装Go-ethereum

          本文链接:https://www.haomeiwen.com/subject/xtnccftx.html