以太坊geth客户端源码搭建

源码安装ethereum

//克隆github仓库
$ sudo git clone https://codechina.csdn.net/mirrors/ethereum/go-ethereum.git

//从源码构建Geth
$ cd go-ethereum
$ make geth

make geth时出错

make geth出错

解决:换一个国内能访问的代理地址,在重新执行
go env -w goproxy=https://goproxy.cn

apt-get命令安装

apt-get命令安装
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository -y ppa:ethereum/ethereum
$ sudo apt-get update
$ sudo apt-get install ethereum

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...