Use npm to install ganache under CentOS 7

1. It is recommended to create a new folder

mkdir dapp
cd dapp

2. Initialize the project using npm

npm init

3. Install ganache client

npm install ganache-cli

4. Turn on ganache

./node_modules/.bin/ganache-cli

 As shown above, it means the startup is successful.

Guess you like

Origin blog.csdn.net/m0_47233175/article/details/121995466