Before proceeding, ensure you have the following:
If Go is not installed, you can follow these steps:
sudo apt update
sudo apt install -y golang
Verify the installation:
go version
To download and set up Waku, clone the official waku repository:
git clone <https://github.com/waku-org/nwaku.git>
cd nwaku
Once you've cloned the repository, build the project:
make
If the make
command is not installed, you can install it with:
sudo apt install build-essential