Install KCC
How to install KCC

The KCC node client is based on Go Ethereum (aka, Geth). To run a KCC 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.
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 KCC node client repository:
git clone --depth 1 -b kcc \
--single-branch https://github.com/kcc-community/kcc.git
Then, "make":
cd kcc/ && make
If everything works well, you will find the resulting binary at:
build/bin/geth
Go to the GitHub Release Page of the KCC client node repository, and the latest binary can be found in the assets section under the latest release notes:

You can find the automatically built docker images from KCC official docker hub repository. Clone the latest docker image by running the following commands:
docker pull kucoincommunitychain/kcc:latest
Last modified 4mo ago