[以太坊] chapter4记录

  1. 拉取docker ubuntu镜像, 并升级apt-get

    apt-get update
  2. 安装Node.js

    apt-get install nodejs
    apt-get install npm
  3. 安装web3

    apt-get install git
    npm install [email protected]
  4. 安装go

    apt-get install golang-go
  5. 安装geth

    apt-get install software-properties-common
    add-apt-repository -y ppa:ethereum/ethereum
    apt-get install ethereum
  6. 安装solcjs

    npm install -g solc

你可能感兴趣的:(以太坊)