Skip to content

Instantly share code, notes, and snippets.

@LuoZijun
Last active January 15, 2019 03:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save LuoZijun/c713bd178d79eec036f773236ac022fe to your computer and use it in GitHub Desktop.
Save LuoZijun/c713bd178d79eec036f773236ac022fe to your computer and use it in GitHub Desktop.
以太坊客户端 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 :

下载安装文件并双击安装: 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment