Installation Guide

Prerequisites

Before installing AgenticFleet, ensure you have:

  • Python 3.9 or higher
  • pip (Python package installer)
  • Virtual environment (recommended)

Quick Install

Install AgenticFleet using pip:

pip install agentic-fleet

Install with Extra Features

Install with specific integrations:

# All features
pip install agentic-fleet[all]

# Chainlit UI
pip install agentic-fleet[chainlit]

# FastAPI integration
pip install agentic-fleet[fastapi]

# WebSocket support
pip install agentic-fleet[websockets]

Development Installation

For development:

# Clone repository
git clone https://github.com/qredence/AgenticFleet.git
cd AgenticFleet

# Create virtual environment
python -m venv venv
source venv/bin/activate  # Linux/Mac
.\venv\Scripts\activate   # Windows

# Install development dependencies
pip install -e ".[dev]"

Environment Setup

  1. Create a .env file:
touch .env
  1. Add required environment variables:
OPENAI_API_KEY=your_openai_key
ANTHROPIC_API_KEY=your_anthropic_key
HUGGINGFACE_API_KEY=your_huggingface_key

Verify Installation

import agentic_fleet

# Print version
print(agentic_fleet.__version__)

# Test installation
from agentic_fleet import Agent
agent = Agent(name="test")

System Requirements

ComponentMinimumRecommended
Python3.93.11
RAM4GB8GB+
CPU2 cores4+ cores
Storage500MB1GB+

Common Issues

SSL Certificate Error

# Install certificates
pip install certifi

Dependencies Conflict

# Create new environment
python -m venv fresh-env
source fresh-env/bin/activate
pip install agentic-fleet

Permission Error

# Install for current user
pip install --user agentic-fleet

Next Steps

  1. Read the Configuration guide
  2. Try the Quickstart tutorial
  3. Explore Examples

Support

For issues: