基于Ubuntu系统搭建以太坊go-ethereum源码的开发环境
Posted Siegel的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于Ubuntu系统搭建以太坊go-ethereum源码的开发环境相关的知识,希望对你有一定的参考价值。
第一、先安装geth的CLI环境sudo apt-get install geth,这个很重要
第二、下载源代码
git clone https://github.com/ethereum/go-ethereum
我下载到啦 /home/siegel/ethereum/
更改文件夹权限为可写 chmod -R 777 /home/siegel/ethereum/go-ethereum
第三步
sudo apt-get install software-properties-common sudo add-apt-repository -y ppa:ethereum/ethereum sudo apt-get update sudo apt-get install ethereum
然后输入 geth --help 看是否安装成功
第四步
git clone https://github.com/ethereum/go-ethereum
curl -O https://storage.googleapis.com/golang/go1.7.3.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.7.3.linux-amd64.tar.gz
mkdir -p ~/go
export GOPATH=$HOME/go
export PATH=$PATH:$HOME/go/bin:/usr/local/go/bin
sudo apt-get install -y build-essential golang
第五步
cd /home/siegel/ethereum/go-ethereum
make geth
以上是关于基于Ubuntu系统搭建以太坊go-ethereum源码的开发环境的主要内容,如果未能解决你的问题,请参考以下文章