Installation & Setup

Download & Install

First, you can download the latest release of Genix from the official Genix.dev Download Page. We provide precompiled binaries for:

  • Windows (32-bit and 64-bit)
  • macOS (Intel & Apple Silicon)
  • Linux (32-bit and 64-bit)

Windows Installation

  1. Download the .exe file for your system.
  2. Place it in a folder of your choice (e.g., C:Genix).
  3. Add that folder to your PATH so you can run genix from anywhere in the terminal.

Mac Installation

  1. Download the genix binary.
  2. Move it to /usr/local/bin:

    sudo mv genix /usr/local/bin/
    sudo chmod +x /usr/local/bin/genix
    
  3. Add that folder to your PATH so you can run genix from anywhere in the terminal.

Linux Installation

  1. Download the binary for your architecture.
  2. Move it to /usr/local/bin:

    sudo mv genix /usr/local/bin/
    sudo chmod +x /usr/local/bin/genix
    
  3. Add that folder to your PATH so you can run genix from anywhere in the terminal.

Verify Installation

To make sure Genix is installed correctly:

genix version

Creating a New Project

Start by creating a new, empty folder. This will be the location where all your site files and configurations will live.

Create Working Directory

mkdir my-website
cd my-website

Initialize Your Genix Project

Inside your new folder, run the following command:

genix install
Scroll To Top