# Use prebuilt binaries

1. Download and extract the [Speedb package](https://github.com/speedb-io/speedb/releases). You should have a `usr` directory with `include` and `lib` directories under it.
   * Add the path of the `include` directory to the compiler command line (this may depend on your build system; `-I` for GCC/Clang. Assuming you extracted the archive to `/home/user/speedb`, the flag should be `-I /home/user/speedb/usr/include`
   * Add the path to the `lib` directory and the library to the linker command line (this may depend on your build system. Assuming you extracted the archive to `/home/user/speedb`, for GCC/Clang this would be `-L /home/user/speedb/usr/lib` and `-lspeedb`, respectively)


---

# 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://docs.speedb.io/getting-started/install.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.
