Skip to main content

Installation & Setup

Get AnoFox Forecast running in minutes.

System Requirements

RequirementVersion
DuckDB1.4.3 or later
OSLinux, macOS, Windows
Architecturex86_64, ARM64, WASM

Installation

Install from the DuckDB Community Registry:

INSTALL anofox_forecast FROM community;
LOAD anofox_forecast;

For local builds or development versions, see the GitHub repository.

Verify Installation

-- Load extension
LOAD anofox_forecast;

-- Test with a simple forecast
SELECT * FROM anofox_fcst_ts_forecast(
'SELECT DATE ''2023-01-01'' + INTERVAL (i) DAY AS date,
100 + i AS value
FROM generate_series(0, 99) t(i)',
'date',
'value',
'Naive',
7,
MAP{}
)
LIMIT 3;

Persistent Loading

To load the extension automatically, create a .duckdbrc file:

# ~/.duckdbrc
LOAD anofox_forecast;
🍪 Cookie Settings