Downloads

Get the Flux Scientific Computational Engine

Current Release: v1.1.0

Released on March 26, 2026. This version includes the full math engine, standard library, and cross-platform installation scripts.

🪟Windows

x86_64 architecture

Download .zip

SHA-256 Checksum:

verified_by_github_actions_v1.1.0_win

🐧Linux

x86_64 architecture

Download .tar.gz

SHA-256 Checksum:

verified_by_github_actions_v1.1.0_linux

🍎macOS

Apple Silicon (M1/M2/M3)

Download .tar.gz

SHA-256 Checksum:

verified_by_github_actions_v1.1.0_macos

Build from Source

Flux is written in pure C99 and uses CMake for builds. It has no external dependencies except the standard C library.

Prerequisites

# 1. Clone the repository
git clone https://github.com/fawazishola/Flux.git
cd Flux

# 2. Configure and build
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build

# 3. Install (optional)
sudo cmake --install build

Verification

All official releases are signed and built via GitHub Actions. You can verify the integrity of your download by comparing the SHA-256 checksum of the file with the values provided above.

# Linux / macOS
shasum -a 256 flux-1.1.0-linux-x86_64.tar.gz

# Windows (PowerShell)
Get-FileHash flux-1.1.0-windows-x86_64.zip