ethereum的Parity客户端安装

资料地址:

https://parity.io/parity.html

https://github.com/paritytech/parity/releases

macOS :

brew tap paritytech/paritytech
brew install parity

# 同步 Kovan 测试网络数据
parity --chain kovan

GNU/Linux :

# Debian && Ubuntu
wget http://d1h4xl4cr1h0mo.cloudfront.net/v1.6.9/x86_64-unknown-linux-gnu/parity_1.6.9_amd64.deb
dpkg -i parity_1.6.9_amd64.deb

# 同步 Kovan 测试网络数据
parity --chain kovan

Windows :

官网下载:https://www.parity.io/

下载安装文件并双击安装: http://d1h4xl4cr1h0mo.cloudfront.net/v1.6.9/x86_64-pc-windows-msvc/InstallParity.exe

在「开始」菜单输入 powershell 或者 cmd 回车,然后在命令行里面输入:

# 创建数据目录
cd D:\
mkdir ethereum
cd C:\
cd 'Program Files\Ethcore\Parity'

# 同步 Kovan 测试网络数据
parity.exe --chain kovan --force-ui
# 同步主网络数据
parity.exe --force-ui

然后在浏览器上面打开地址: http://127.0.0.1:8180


评论 (0)