标签:lang 源代码 amd .com export upd https 文件夹 更改
第一、先安装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源码的开发环境
标签:lang 源代码 amd .com export upd https 文件夹 更改
原文地址:http://www.cnblogs.com/Siegel/p/7389011.html