Install Node
Before mining on the WorldLand network, you need to install the WorldLand node client.
Hardware Requirements
| Component | Minimum | Recommended |
|---|---|---|
| CPU | 2+ cores | Fast CPU with 4+ cores |
| RAM | 4 GB | 8 GB+ |
| Storage | 500 GB free | 500 GB high-performance SSD |
| Internet | 8 Mbit/sec | 25+ Mbit/sec |
Linux and Mac
1. Environment
TIP
We wrote the document based on Ubuntu, but it is expected to work on UNIX-like operating systems as well.
Download the basic packages needed for the build:
sudo apt update
sudo apt upgradeFor building WorldLand, it requires Go (version 1.18 or later). You can install them using the following commands:
sudo apt install gcc
sudo apt install make
sudo apt install snapd
sudo snap install go --classicMac
For macOS, install Go using Homebrew:
brew install goCheck the version of Go (version 1.18 or later):
go version2. Installation
You can download WorldLand by cloning the WorldLand repository:
git clone https://github.com/cryptoecc/WorldLand.gitOnce dependencies are installed, move to /WorldLand and build:
cd WorldLand
make worldlandOr to build the full suite of utilities:
make allInstallation complete! To run the WorldLand node, write the following command:
./build/bin/worldland consoleWindows
Using Installer
You can download the pre-built binary from the WorldLand Releases page.
Run and Build
1. Install Chocolatey
Install Chocolatey package manager for Windows.
2. Installation
Install the required build tools:
choco install git golang mingwThen clone and build:
git clone https://github.com/cryptoecc/WorldLand.git
cd WorldLand
go install ./cmd/worldland