> For the complete documentation index, see [llms.txt](https://tobanteaudio.gitbook.io/juce-cookbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tobanteaudio.gitbook.io/juce-cookbook/setup/linux.md).

# Linux

## Dependencies

|    Program    |                   Description                  |            Comment            |
| :-----------: | :--------------------------------------------: | :---------------------------: |
|      x11      |             Unix windowing system.             |                               |
|    xinerama   |         Multi display extension to x11.        |                               |
|    LibXext    |             More extensions to x11.            |                               |
|      ALSA     |               ALSA sound library.              |                               |
|    freetype   |                  Font library.                 |                               |
|   glu1-mesa   |                                                |                               |
|   webkit2gtk  |              WebKit Browser Engine             | Optional `JUCE_WEB_BROWSER=0` |
| curl4-openssl |                  CURL library                  |   Optional `JUCE_USE_CURL=0`  |
|     CMake     |     Build file generator. Replaces Projucer    |            Optional           |
|     Ninja     | Build system similar to Makefiles, but faster. |            Optional           |
|     Clang     |                    Compiler.                   |            Optional           |

### Ubuntu

```bash
# Required
sudo apt install libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libasound2-dev libglu1-mesa-dev
# Optional
sudo apt install libwebkit2gtk-4.0-dev libcurl4-openssl-dev
```

### ToDo

* Arch
* Fedora
* Raspberry PI

## Install

```bash
git clone https://github/juce-framework/JUCE.git
cd JUCE/extras/Projucer/Builds/LinuxMakefile
make config=Release -j8
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://tobanteaudio.gitbook.io/juce-cookbook/setup/linux.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.
