# Installation Guide

### Prerequisites

* Python 3.8 or above
* pip, Conda, or Pipenv (latest version recommended)

### Quick Installation

```bash
pip install agentneo
```

### Platform-Specific Installation

#### Windows

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

# Install AgentNeo
pip install agentneo
```

#### macOS/Linux

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

# Install AgentNeo
pip install agentneo
```

#### Using Conda

```bash
# 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
python -c "import agentneo; print(agentneo.__version__)"
```

### Development Installation

For contributing or development:

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://agentneo.raga.ai/getting-started/installation-guide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
