> For the complete documentation index, see [llms.txt](https://easonwang.gitbook.io/blockchain/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://easonwang.gitbook.io/blockchain/ethereumgeth/parity.md).

# Parity

## 簡介:

目標是成為一個輕量快速的ethereum implementation

> Fast, light, robust Ethereum implementation

## 安裝:

先到以下網站，然後往下拉

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

選擇對應的作業系統版本安裝。

![](/files/-M0u4NQVRdptvYWZL72A)

安裝好後執行程式，會自動啟動本地Server並開啟網頁\
![](/files/-M0u4NQXA_dxQpenEQif)

接著輸入錢包的帳號與密碼

![](/files/-M0u4NQZDWerTJ-pXkiO)下一步，記得把恢復錢包的字串記下，I have written down the phrase 之後即可按下一步。

> 以下recovery phrase僅為範例

![](/files/-M0u4NQakGlhN5DDPH6Q)

windows 把以下路徑加入環境變數

```
C:\Program Files\Ethcore\Parity
```

mac 把以下路徑加入環境變數

```
export PATH=/Applications/Parity\ Ethereum.app/Contents/MacOS:$PATH
```

## Ubuntu install from command line

```
wget http://d1h4xl4cr1h0mo.cloudfront.net/v1.6.8/x86_64-unknown-linux-gnu/parity_1.6.8_amd64.deb

sudo apt install gdebi-core

sudo gdebi parity_1.6.8_amd64.deb
```

## 存放資料夾

```
MAC  $HOME/Library/Application\ Support/io.parity.ethereum/
Windows %UserProfile%\AppData\Roaming\Parity
Linux ~/.local/share/io.parity.ethereum/
```

## 文件

<https://github.com/paritytech/parity/wiki>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://easonwang.gitbook.io/blockchain/ethereumgeth/parity.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
