Windows

64-bit Installer

Download for Windows

Apple Intel

macOS (x86_64)

Download for Mac Intel

Apple M1

macOS (ARM / Apple Silicon)

Download for Mac M1

Ubuntu

Linux (x86_64)

Download for Ubuntu

Setup Guide

Follow these steps to build and run Trivia Coin from source on Linux/macOS

1
Extract the archive
tar -xzf tvccoin.tar.gz
2
Enter the directory
cd tvccoin/
3
Install build dependencies
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev

These are the essential packages required for compiling the Trivia Coin daemon and CLI tools.

4
Bootstrap the build system
./autogen.sh
5
Configure the build
./configure

For wallet support with BerkeleyDB 4.8, add the appropriate BDB flags. See the included documentation for details.

6
Compile
make -j$(nproc)

This will build triviacoind, triviacoin-cli, and other utilities. Requires at least 1.5 GB of RAM.

7
Install (optional)
sudo make install

Installs the binaries system-wide. You can also run them directly from the src/ directory.

8
Configure your node
mkdir -p ~/.triviacoin && nano ~/.triviacoin/triviacoin.conf

Create a configuration file with your RPC credentials and network settings. Default RPC port is 9333.