> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useocular.com/llms.txt
> Use this file to discover all available pages before exploring further.

> Description of your new file.

# Installation

# Installation Guide

## Prerequisites

Before installing the OcularAI SDK, ensure you have:

* Python 3.8 or higher
* pip (Python package installer)
* An OcularAI account with API access

<Tip>
  We recommend using a virtual environment (venv, conda, or pipenv) to avoid dependency conflicts with other projects.
</Tip>

## Standard Installation

Install the SDK using pip:

```bash theme={null}
pip install ocular-ai
```

<Info>
  This installs the latest stable version of the SDK from PyPI (Python Package Index).
</Info>

## Verifying Installation

After installation, verify that the SDK is correctly installed by running:

```bash theme={null}
pip show ocular-ai
```

<Check>
  If you get the package name , version ,location then it is succesfully installed
</Check>

## Troubleshooting

If you encounter any issues during installation:

1. Ensure your Python version is 3.8 or higher
2. Update pip to the latest version: `pip install --upgrade pip`
3. If behind a firewall, check proxy settings

<Info>
  For persistent installation problems, please refer to our [GitHub Issues](https://github.com/OcularEngineering/ocular-python-sdk/issues) or contact support.
</Info>
