Welcome! This guide will help you get Inferno AI up and running on your machine in just a few minutes.
In this section, you’ll learn how to:
Before you begin, make sure you have:
Choose your preferred path to get started:
Detailed installation instructions for all supported platforms including Homebrew, package managers, and manual installation.
Best for: First-time users who want step-by-step guidance
Jump straight into running your first inference and starting the API server with minimal setup.
Best for: Experienced users who want to get started immediately
Learn how to configure Inferno for optimal performance, security, and your specific use case.
Best for: Users who want to customize their setup
A simple checklist to verify your installation and run your first successful inference.
Best for: Ensuring everything is working correctly
Here’s a quick overview of the installation process:
# Install via Homebrew (recommended)
brew install inferno
# Verify installation
inferno --version
# Ubuntu/Debian
wget https://github.com/ringo380/inferno/releases/latest/download/inferno-linux-amd64.deb
sudo dpkg -i inferno-linux-amd64.deb
# Verify installation
inferno --version
# Download the installer from GitHub releases
# Or use winget (Windows Package Manager)
winget install Inferno.InfernoAI
# Verify installation
inferno --version
# Pull the latest image
docker pull ringo380/inferno:latest
# Run a simple inference
docker run --rm ringo380/inferno:latest inferno --version
Once installed, try this simple command to run your first inference:
# Download and run inference with a small model
inferno run --model llama-2-7b-chat --prompt "Hello, world! Tell me about yourself."
Inferno will:
To use Inferno with the OpenAI-compatible API:
# Start the server on port 8080
inferno serve --port 8080
# In another terminal, test with curl
curl http://localhost:8080/v1/models
After completing the basics:
Ready to install? Head to the Installation Guide →