geth的安装(Linux)

geth的安装(Linux) 基于Linux系统geth的安装更多技术博客 http://vilins.top/安装ethereumsudo apt-get install software-properties-common sudo add-apt-repository -y ppa:ethereum/ethereum sudo add-apt-repository -y ppa:ethereum/ethereum-dev sudo apt-get update sudo apt-get install ethereum然后用geth --help检查是否安装成功go语言的安装curl -O https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz tar -C /usr/local -xzf go1.5.1.linux-amd64.tar.gz mkdir -p ~/go; echo export GOPATH$HOME/go ~/.bashrc echo export PATH$PATH:$HOME/go/bin:/usr/local/go/bin ~/.bashrc source ~/.bashrc如果第一句命令运行不成功手动下载然后解压安装solc编译器sudo add-apt-repository -y ppa:ethereum/ethereum sudo add-apt-repository -y ppa:ethereum/ethereum-dev sudo apt-get update sudo apt-get install solc或者直接sudo apt-get install solc更多技术博客 http://vilins.top/