之后的安装都需要依赖Git
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
查看版本号
git --version
git version 2.10.2
geth安装可以参考官方github wiki获取更多信息:go-ethereum Wiki
sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
获取geth指令
geth --help
solidity是以太坊智能合约的开发语言。想要测试智能合约,开发DAPP的需要安装solc。官方文档获取更多信息
sudo add-apt-repository ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install solc
如果需要安装truffle开放框架,需要先安装nodejs。推荐使用v6.9.4 LTS或更高版本。官方下载链接
也可以去国内网站找镜像下载。
下载源码node-v6.9.4.tar.gz
>tar xvf node-v6.9.4.tar.gz
>cd node-v6.9.4
>./configure
>make
>make install
>node -v
v6.9.4
>npm -v
3.10.10
truffle和testrpc是配套的以太坊开发框架。通过truffle可以快速的编译和部署合约并进行测试,同时还有web前端交互界面。truffle官方文档
testrpc可以理解为快速生成以太坊测试账号。
由于GFW的原因,安装truffle比较慢,先设置淘宝源。
npm config set registry https://registry.npm.taobao.org
之后安装truffle和testrpc
npm install -g truffle
npm install -g ethereumjs-testrpc
查看版本号
>truffle --version
v3.1.1
>testrpc