Please refer to the installation method more applicable to you.
Our recommendation is to use the pre-built releases and verify the provided checksums.
Pre-built releases
Please refer to the GitHub Releases page for a list of releases.
Lyfebloc Network comes with cross-compiled AMD64/ARM64 binaries for Darwin and Linux.
Docker image
Official Docker images are hosted under the hub.docker.com registry.
docker pull lyfeblocnetwork/lyfebloc-core:latest
Building from source
Prior to using go install
make sure that you have Go >=1.20
installed and properly configured.
The stable branch is develop
.
git clone https://github.com/lyfeblocnetwork/lyfebloc-core.git
cd lyfebloc-core/
go build main.go -o lyfebloc-core
sudo mv lyfebloc-core /usr/local/bin
git clone https://github.com/lyfeblocnetwork/lyfebloc-core.git
cd lyfebloc-core/
go build main.go -o lyfebloc-core
sudo mv lyfebloc-core /usr/local/bin
Using go install
Prior to using go install
make sure that you have Go >=1.20
installed and properly configured.
go install github.com/lyfeblocnetwork/lyfebloc-core@develop
The binary will be available in your GOBIN
environment variable, and will include the latest changes from the mainline develop
branch.