Ubuntu16.04以太坊開發環境搭建
阿新 • • 發佈:2018-12-31
這裡記錄一下開發環境的搭建,方便以後再用。帶*為可選。
Ubuntu16.04
安裝ubuntu16.04。下載連結
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
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://blog.csdn.net/Akeron/article/details/51027243