ubuntu20.04安装以太坊客户端(geth和ganache)

本文介绍安装两种以太坊客户端Geth和Ganache。

先安装git:

sudo apt install -y git

查看git版本:

git --version

使用git从github拉取geth项目:

git clone https://github.com/ethereum/go-ethereum.git

make命令安装geth:

make geth

安装结束。

安装ganache:

npm install -g ganache-cli

打开ganache:

ganache-cli

猜你喜欢

转载自blog.csdn.net/k1nh00/article/details/123766773