ubuntu環境下搭建以太坊開發環境

勤勞的12發表於2018-12-27

Ubuntu16.04

安裝Ubuntu16.04。下載連結

安裝見 http://www.linuxidc.com/Linux/2016-04/130520.htm

git

之後的安裝都需要依賴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

Git使用圖文詳細教程  http://www.linuxidc.com/Linux/2016-11/136781.htm

Ubuntu Git安裝與使用 http://www.linuxidc.com/Linux/2016-11/136769.htm

geth

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

solc安裝

solidity是以太坊智慧合約的開發語言。想要測試智慧合約,開發DAPP的需要安裝solc。官方文件獲取更多資訊

sudo add-apt-repository ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install solc

*npm安裝

如果需要安裝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和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

*sublime text 3126

sublime text 3126支援Ethereum solidity的高亮外掛,比較方便。 
Ctrl+` 調出控制檯

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

之後重啟sublime text,Ctrl+Shift+P中輸入Install Package搜尋Ethereum安裝,在語法裡選擇solidity。 
sublime test3126支援中文輸入參考一下連結:http://www.linuxidc.com/Linux/2017-11/148477.htm

更多Ubuntu相關資訊見Ubuntu 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=2

本文永久更新連結地址http://www.linuxidc.com/Linux/2017-11/148478.htm

相關文章