Download Soqucoin Node

Run your own post-quantum full node. Validate transactions, support the network, and be part of the quantum-resistant future.

⭐ RECOMMENDED

Run with Docker (All Platforms)

One command. Works on Linux, macOS, Windows, and Raspberry Pi.

docker run -d -p 44556:44556 soqucoin/soqucoin
📦 Don't have Docker? Click here for install instructions
Ubuntu / Debian: sudo apt install docker.io && sudo usermod -aG docker $USER
Raspberry Pi: curl -fsSL https://get.docker.com | sh && sudo usermod -aG docker $USER
macOS: brew install --cask docker Or download Docker Desktop
Windows: Download Docker Desktop for Windows
💡 After installing, log out and back in, then run the docker command above.

One-Line Install (Linux & macOS)

Alternative method using shell script. Automatically detects your platform.

curl -sSL https://soqu.org/install.sh | bash

Supports: Linux x64, macOS Intel, macOS Apple Silicon

Download Binaries

Pre-built binaries for all major platforms

Linux

x86_64 (64-bit)
Download
soqucoin-*-linux-x64.tar.gz

Raspberry Pi

Pi 4/5 (ARM64)
Build Guide →
~8 min build on Pi5

macOS

Intel & Apple Silicon
Download
soqucoin-*-macos-*.tar.gz
⚠️ Daemon-only build (node operators)

Windows

Windows 10/11 (WSL2)
Build Guide →
~10 min via WSL2
NEW

Docker

All platforms with Docker
Docker Hub
docker pull soqucoin/soqucoin

Build from Source

Any platform
View Guide ↓
Step-by-step instructions

Quick Start Guide

1

Install

Use the one-line installer or download binaries above.

curl -sSL https://soqu.org/install.sh | bash
2

Configure

Edit the configuration file (created automatically).

nano ~/.soqucoin/soqucoin.conf
3

Start Node

Launch the Soqucoin daemon.

soqucoind
4

Verify

Check that your node is syncing.

soqucoin-cli getblockchaininfo

Build from Source

For Raspberry Pi, Windows, and other platforms not listed above.

🥧 Raspberry Pi 4/5

Native ARM64 build (~8 minutes on Pi5 8GB)

⚡ One-Line Install
curl -sSL https://soqu.org/build-pi.sh | bash
📋 Or manual steps...
sudo apt install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev libboost-all-dev libdb5.3++-dev git
git clone https://github.com/soqucoin/soqucoin.git
cd soqucoin && git checkout soqucoin-genesis
./autogen.sh && ./configure --without-gui && make -j4
📖 Full Pi5 Setup Guide →
🚧 Pre-built ARM64 binaries coming in v0.22.0

🪟 Windows 10/11 (WSL2)

Build via Windows Subsystem for Linux (~10 min)

⚡ One-Line Install (PowerShell Admin)
irm https://soqu.org/build-wsl.ps1 | iex
📋 Or manual steps...
# PowerShell as Admin:
wsl --install -d Ubuntu
# After restart, in Ubuntu:
sudo apt update && sudo apt install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev libboost-all-dev libdb++-dev git
git clone https://github.com/soqucoin/soqucoin.git && cd soqucoin
git checkout soqucoin-genesis && ./autogen.sh && ./configure --without-gui && make -j$(nproc)
📖 WSL2 Installation Guide →
🚧 Native Windows binaries under development
💡 Pro Tip: After building, add to your PATH: export PATH="$HOME/soqucoin/src:$PATH"

Why Run a Node?

Running a full node makes you a first-class participant in the Soqucoin network.

Self-Sovereignty

Verify your own transactions without trusting third parties. Your node, your rules.

Privacy

Don't leak your addresses to public explorers. Query the blockchain privately on your own node.

Network Health

More nodes means faster sync times for everyone and a more resilient, decentralized network.

Node Types

Seed Nodes

3-5 needed globally

Help new nodes discover peers via DNS. Once a node connects, it doesn't need seeds anymore.

Full Nodes

The more the better

Validate transactions, store the blockchain, and serve data to other nodes. This is what you'll run.

See who's running nodes on the testnet

View Node Leaderboard →

System Requirements

Storage
50+ GB (SSD recommended)
RAM
4 GB minimum
CPU
2+ cores
Network
Stable broadband
Port
44556 (P2P)
OS
Linux, macOS, Windows

Verify Your Download

Always verify the SHA256 checksum of downloaded binaries:

sha256sum soqucoin-*.tar.gz # Compare with checksums at: https://github.com/soqucoin/soqucoin/releases