Installation Guide

Complete guide to installing GGUF Loader on Windows, macOS, and Linux

Beginner 5 minutes

This guide will help you install GGUF Loader 2.2.0 on your system. Want to see what GGUF Loader can do first? Explore the features on our homepage.

πŸ“‹ System Requirements

  • OS: Windows 10/11, Linux (x86_64), or macOS
  • RAM: 4 GB minimum (8 GB+ recommended for larger models)
  • Storage: 2 GB free space for the app, plus room for model files
  • GPU: Optional β€” CPU-only works everywhere; NVIDIA CUDA is supported on Windows and Linux
  • Python: Not required for the installers (everything is bundled)

πŸš€ Quick Installation

The prebuilt installers bundle Python, PySide6, and llama.cpp β€” you do not need Python installed.

Windows

  1. Download GGUFLoader_v2.2.0_CPU.exe (~69 MB) from the releases page. This is the CPU-only build that works on any PC.
  2. Have an NVIDIA GPU with CUDA? Grab GGUFLoader_v2.2.0_GPU.exe (~854 MB) instead for GPU acceleration.
  3. Double-click the downloaded file and run it. No installation wizard β€” the app starts immediately.

⚠️ Windows SmartScreen: The first launch may show β€œWindows protected your PC”. Click More info β†’ Run anyway. This is normal for unsigned open-source binaries.

Linux (x86_64)

  1. Download GGUFLoader_v2.2.0_linux_x86_64_CPU (~121 MB) from the releases page.
  2. Make it executable and run:
    chmod +x GGUFLoader_v2.2.0_linux_x86_64_CPU
    ./GGUFLoader_v2.2.0_linux_x86_64_CPU
    

    No installation needed β€” the app starts directly. Everything (Python, PySide6, llama.cpp) is bundled.

macOS

No prebuilt installer is published yet. Run from source (below) β€” everything works on macOS.

Run from Source (any platform)

For development, or to run on an unsupported platform:

git clone https://github.com/GGUFloader/gguf-loader.git
cd gguf-loader
pip install -r requirements.txt
python main.py

βœ… Verify Your Installation

Run GGUFLoader_v2.2.0_CPU.exe --version (Windows) or ./GGUFLoader_v2.2.0_linux_x86_64_CPU --version (Linux) β€” it prints GGUF Loader version 2.2.0 and exits.

πŸ”§ Next Steps

🎯 What's Next?

You've completed this guide! Here are some suggested next steps to continue your GGUF Loader journey:

πŸš€

Start Using GGUF Loader

Now that you have GGUF Loader installed, follow our Quick Start guide to load your first model and start chatting.

Quick Start Guide β†’
πŸ€–

Browse Models

Explore our curated collection of GGUF models to find the perfect one for your needs.

Browse Models β†’
✨

Explore Features

Discover all the powerful features that make GGUF Loader special.

See Features β†’

🏠 Back to Homepage