Files
llamactl/docs/getting-started/installation.md

1.2 KiB

Installation

This guide will walk you through installing Llamactl on your system.

Prerequisites

Before installing Llamactl, ensure you have:

  • Go 1.19 or later
  • Git
  • Sufficient disk space for your models

Installation Methods

Download the latest release from our GitHub releases page:

# Download for Linux
curl -L https://github.com/lordmathis/llamactl/releases/latest/download/llamactl-linux-amd64 -o llamactl

# Make executable
chmod +x llamactl

# Move to PATH (optional)
sudo mv llamactl /usr/local/bin/

Option 2: Build from Source

If you prefer to build from source:

# Clone the repository
git clone https://github.com/lordmathis/llamactl.git
cd llamactl

# Build the application
go build -o llamactl cmd/server/main.go

For detailed build instructions, see the Building from Source guide.

Verification

Verify your installation by checking the version:

llamactl --version

Next Steps

Now that Llamactl is installed, continue to the Quick Start guide to get your first instance running!