# Installation

## Install prerequisites:

```bash
apt install -y \
    ffmpeg \
    libexif-dev \
    libprotobuf-dev \
    libopenexr25 \
    libgstreamer1.0-0 \
    libgstreamer-plugins-base1.0-0 \
    wget
```

## Install Celantur dependencies

Celantur will provide you links to Debian packages:

* Celantur SDK (`cpp-processing`)
* Boost
* OpenCV
* ONNX Runtime

Install them with:

```bash
apt install ./celantur-*.deb
```

### Optional: Install OpenVINO 2024

For compiling and running [OpenVINO models](https://docs.openvino.ai/2026/get-started/install-openvino.html?).&#x20;

```bash
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
    apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB && \
    echo "deb https://apt.repos.intel.com/openvino/2024 ubuntu22 main" | tee /etc/apt/sources.list.d/intel-openvino-2024.list && \
    apt update && \
    apt install -y openvino && \
    rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
```

### Optional: Install TensorRT 10

For compiling and running TensorRT (TRT) models, see [official NVIDIA installation guide](https://docs.nvidia.com/deeplearning/tensorrt/latest/installing-tensorrt/install-debian.html#installing-debian).

## Download the model

Celantur will provide you link to download the model.

## Test the installation

Try out the [SDK examples](https://github.com/celantur/SDKExample/).


---

# 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://doc.celantur.com/sdk/requirements-and-installation/installation.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.
