关于以太坊:以太坊-chapter4记录

40次阅读

共计 384 个字符,预计需要花费 1 分钟才能阅读完成。

  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 web3@0.20.6
  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

开始后注意事项:
本 geth 无 rpc 参数
关上可近程连贯 geth 的命令为

geth --datadir private/ --http --http.addr 0.0.0.0 --http.port 8545

正文完
 0