从今天开始波波将陆续为大家分享关于以太坊的入门级教程。今天是第一篇,波波就简单分享下在CentOS7系统上如何快速部署以太坊开发环境。
操作步骤:
1、安装扩展库。
- yum install bzip2 gcc-c++ ntp epel-release nodejs cmake -y
2、安装goLang。
- yum install -y golang
安装完成后,我们可以通过“go version”命令查看当前系统go语言的版本。波波目前安装的版本是1.13.3
3、下载以太坊客户端GETH。
当前最新版本是1.9.9,大家在自己安装的时候可以去以太坊官网查看最新版本。网址:https://geth.ethereum.org/downloads/
安装命令如下:
- mkdir -p /data/go-ethereum
- cd /data/go-ethereum
- wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.9.9-01744997.tar.gz
- tar zxvfm geth-linux-amd64-1.9.9-01744997.tar.gz
- mkdir -p /etc/profile.d/go-ethereum
- cp geth /etc/profile.d/go-ethereum/
- chmod +x geth
- echo 'PATH=$PATH:/etc/profile.d/go-ethereum/' >> /etc/profile
- source /etc/profile
- geth --help
看到如下界面就说明环境安装好了。
接下来我们就可以正式开始使用钱包了。