Linux

For Ubuntu, Debian, Fedora, Arch, and other distributions

Requirements

  • Python 3.8+
  • Git
  • Docker (optional)

Windows

For Windows 10/11 (64-bit)

Requirements

  • Python 3.8+
  • Git
  • Docker Desktop (optional)

Source Code

Clone from GitHub for the latest development version

Requirements

  • Python 3.8+
  • Git
  • pip
View on GitHub Always latest

Installation Guide

Follow these steps to install AgentOS on your system

1

Download and Extract

Download the tar.gz file and extract it:

bash
wget https://github.com/agents-os/agentos/releases/download/v1.0.0/agentos-1.0.0.tar.gz
tar -xzf agentos-1.0.0.tar.gz
cd agentos-1.0.0
2

Run the Installer

Execute the Linux installer script:

bash
python3 install_linux.py
3

Configure Environment

Set up your API keys:

bash
cp .env.example .env
nano .env  # Add your API keys
4

Verify Installation

Test that AgentOS is working:

bash
agentos --version
agentos chat --provider ollama  # Test without API key
1

Download and Extract

Download the zip file and extract it to your preferred location.

powershell
Invoke-WebRequest -Uri "https://github.com/agents-os/agentos/releases/download/v1.0.0/agentos-1.0.0.zip" -OutFile "agentos.zip"
Expand-Archive -Path agentos.zip -DestinationPath .
cd agentos-1.0.0
2

Run the Installer

Execute the Windows installer script:

powershell
python install_windows.py
3

Configure Environment

Set up your API keys:

powershell
copy .env.example .env
notepad .env  # Add your API keys
4

Verify Installation

Test that AgentOS is working:

powershell
agentos --version
1

Clone Repository

Get the latest source code from GitHub:

bash
git clone https://github.com/agents-os/agentos.git
cd agentos
2

Create Virtual Environment

Set up an isolated Python environment:

bash
python -m venv .venv
source .venv/bin/activate  # Linux/Mac
# .venv\Scripts\activate  # Windows
3

Install Dependencies

Install required Python packages:

bash
pip install -r requirements.txt
4

Configure & Run

Set up environment and start using AgentOS:

bash
cp .env.example .env
# Edit .env with your API keys
python agentos.py --help

All Releases

Download previous versions of AgentOS

Version Date Notes Download
v1.0.0 Nov 8, 2025 Initial stable release

System Requirements

Make sure your system meets these requirements

Python

Version 3.8 or higher

Download Python →

Git

For cloning and updates

Download Git →

Docker

Optional, for isolation

Download Docker →

API Keys

For cloud LLM providers

Configuration Guide →