AgentNeo
RagaAIPackageGitHub
  • AgentNeo
  • Getting Started
    • Overview
    • Quick Start Guide
    • Installation Guide
  • Features
    • Architecture
    • Basic Usage
    • Components
    • Key Features
    • Dashboard
  • Developer Guide
    • Advanced Usage
    • API Documentation
    • Database
  • Evaluation & Metrics
    • Metric Configuration
    • Overview
    • Supported Metrics
  • Contributing
    • Guidelines
    • Pull Request Process
    • Development Setup
  • Troubleshooting
    • Common Issues and Solutions
    • Frequently Asked Questions
  • Release Information
    • Breaking Changes
    • Version History
  • Reference
    • Glossary
    • Changelog
Powered by GitBook
On this page
  • Prerequisites
  • Quick Installation
  • Platform-Specific Installation
  • Verification
  • Development Installation
  1. Getting Started

Installation Guide

Prerequisites

  • Python 3.8 or above

  • pip, Conda, or Pipenv (latest version recommended)

Quick Installation

pip install agentneo

Platform-Specific Installation

Windows

# Create virtual environment
python -m venv agentneo-env
agentneo-env\Scripts\activate

# Install AgentNeo
pip install agentneo

macOS/Linux

# Create virtual environment
python -m venv agentneo-env
source agentneo-env/bin/activate

# Install AgentNeo
pip install agentneo

Using Conda

# Create conda environment
conda create --name agentneo-env python=3.8
conda activate agentneo-env

# Install AgentNeo
pip install agentneo

Verification

Verify your installation:

python -c "import agentneo; print(agentneo.__version__)"

Development Installation

For contributing or development:

git clone https://github.com/raga-ai-hub/agentneo.git
cd agentneo
pip install -e ".[dev]"
PreviousQuick Start GuideNextArchitecture

Last updated 6 months ago