首页 > 学院 > 开发设计 > 正文

Ubuntu16.04以太坊开发环境搭建

2019-11-06 09:06:58
字体:
来源:转载
供稿:网友

这里记录一下开发环境的搭建,方便以后再用。带*为可选。

Ubuntu16.04

安装ubuntu16.04。下载链接

git

之后的安装都需要依赖Git

sudo add-apt-repository ppa:git-core/ppasudo apt-get updatesudo apt-get install git

查看版本号

git --versiongit version 2.10.2

geth

geth安装可以参考官方github wiki获取更多信息:go-ethereum Wiki

sudo apt-get install software-PRoperties-commonsudo add-apt-repository -y ppa:ethereum/ethereumsudo apt-get updatesudo apt-get install ethereum

获取geth指令

geth --help

solc安装

solidity是以太坊智能合约的开发语言。想要测试智能合约,开发DAPP的需要安装solc。官方文档获取更多信息

sudo add-apt-repository ppa:ethereum/ethereumsudo apt-get updatesudo 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 -vv6.9.4>npm -v3.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 trufflenpm install -g ethereumjs-testrpc

查看版本号

>truffle --versionv3.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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表