Installation

Install Veriafy on your local machine or server

Quick Install

Install via script (recommended):

curl -fsSL https://get.veriafy.com/install.sh | sh

Or via package manager:

# Debian/Ubuntu
sudo apt install veriafy
# Fedora/RHEL
sudo dnf install veriafy
# Arch
yay -S veriafy

Python SDK

Install via pip:

pip install veriafy

With GPU support (CUDA):

pip install veriafy[gpu]

Docker

Pull and run the Veriafy container:

# CPU only
docker run -d -p 8080:8080 veriafy/veriafy:latest
# With GPU support
docker run -d --gpus all -p 8080:8080 veriafy/veriafy:latest-gpu

Verify Installation

Check that Veriafy is installed correctly:

veriafy --version

Expected output:

Veriafy v1.0.0 (build 2025-01-08)

System Requirements

Minimum

  • • 4 GB RAM
  • • 2 GB disk space
  • • x64 or ARM64 CPU
  • • macOS 11+, Windows 10+, or Linux (kernel 4.15+)

Recommended (Production)

  • • 16 GB RAM
  • • 10 GB SSD storage
  • • NVIDIA RTX 3060+ or Apple Silicon
  • • CUDA 11.8+ (for NVIDIA GPUs)

Next Steps