# Install prebuild binary

> **CRITICAL NOTICE:** Version 0.4.0 is required for snasphots, state sync
>
> Snapshots, state sync are no compatible with this version Please proceed with version from [Migration to v0.4.0 guide](/empe-blockchain/overview/migration-to-v0.4.0.md).

The emped binary serves as the node client and the application client. In other words, the emped binary can be used to both run a node and interact with it.

### Pre-Built Package <a href="#pre-built-package" id="pre-built-package"></a>

#### For Linux Distributions <a href="#for-linux-distributions" id="for-linux-distributions"></a>

Download the tar.gz file:

```
curl -LO https://github.com/empe-io/empe-chain-releases/raw/master/v0.1.0/emped_linux_amd64.tar.gz
```

Verify the checksum:

```
sha256sum emped_linux_amd64.tar.gz
```

You should see the following:

```
5353de7004bbacc516d6fc89d7bbcbde251fbba8c4bdccb2a58f8376e47ab753  emped_linux_amd64.tar.gz
```

Unpack the tar.gz file:

```
tar -xvf emped_linux_amd64.tar.gz 

```

Move the binary to your local bin directory and make it executable:

```
mkdir -p ~/go/bin
sudo mv emped ~/go/bin
chmod u+x ~/go/bin/emped 
```

Open a new terminal window and check if the installation was successful:

```
emped version

```

You should see the following:

```
v0.1.0

```


---

# Agent Instructions: 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:

```
GET https://docs.empe.io/empe-blockchain/overview/install-prebuild-binary.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
