本文主要是介绍Centos二进制安装Geth以太坊客户端,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
环境准备
yum install git
yum install golang
获取二进制包
网站:https://geth.ethereum.org/downloads
wget https://gethstore.blob.core.windows.net/builds/geth-alltools-linux-amd64-1.11.0-unstable-37e3208e.tar.gz
tar -zxvf geth-alltools-linux-amd64-1.11.0-unstable-37e3208e.tar.gz -C /home/blockchadin/geth-1.11.0
解压安装包并放置目录
mkdir /usr/local/geth-1.11.0
cp /home/blockchadin/geth-1.11.0/* /usr/local/geth-1.11.0/
添加环境变量(vim /etc/profile)
#BlockChain-Goth
export GETH_HOME=/usr/local/geth-1.11.0
export PATH=$PATH:$GETH_HOME
使环境变量生效并查看版本信息
source /etc/profile
geth version
这篇关于Centos二进制安装Geth以太坊客户端的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!