Install DCC

How to install DCC

Node Client

The DCC node client is based on Go Ethereum (aka, Geth). To run a DCC node, you only need to install a single binary. You can either build the binary from the source or download it from our GitHub release page. Besides, you can also use an automatically built docker image.

Option 1: Build From The Source

Prerequisites:

  • Install "make" and a C compiler

    • For Ubuntu users, you can install "build-essential".

    • For CentOS users, you can install the "Development Tools" group

  • git

First, clone the DCC node client repository:

git clone --depth 1 -b dcc \
    --single-branch https://github.com/dcc-community/dcc.git

Then, "make":

cd dcc/ && make 

If everything works well, you will find the resulting binary at:

Option 2: Download The Binary From GitHub Release Page

Go to the GitHub Release Pagearrow-up-right of the DCC client node repository, and the latest binary can be found in the assets section under the latest release notes:

Option 3: Use Docker

If you want to know more about docker, please go to the docker official docsarrow-up-right.

You can find the automatically built docker images from DCC official docker hub repositoryarrow-up-right. Clone the latest docker image by running the following commands:

Last updated