> For the complete documentation index, see [llms.txt](https://docs.akamas.io/akamas-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.akamas.io/akamas-docs/3.1.3/installing-akamas/install-akamas-dependencies.md).

# Install Akamas dependencies

This page will guide you through the installation of software components that are required to get the Akamas Server installed on a machine. Please read the [Akamas dependencies](/akamas-docs/3.1.3/installing-akamas/prerequisites/software-requirements.md) for a detailed list of these software components for each specific OS.

While some links to official documentation and installation resources are provided here, please make sure to refer to your internal system engineering department to ensure that your company deployment processes and best practices are correctly matched.

## Dependencies Setup <a href="#dependenciessetup-setup" id="dependenciessetup-setup"></a>

As a preliminary step before installing any dependency, it is strongly suggested to create a user named *akamas* on your machine hosting Akamas Server.

### Docker <a href="#dependenciessetup-setup" id="dependenciessetup-setup"></a>

Follow the reference documentation to install docker on your system.

Docker installation guide: <https://docs.docker.com/engine/install>

Docker compose is already installed since Docker 23+. To install it on previous versions of Docker follow this installation guide: <https://docs.docker.com/compose/install/>

AWS CLI v2: <https://docs.aws.amazon.com/cli/latest/userguide>

{% hint style="info" %}
To run docker with a non-root user, such as the `akamas` user, you should add it to the docker group. You can follow the guide at: <https://docs.docker.com/engine/install/linux-postinstall/>
{% endhint %}

## Verify dependencies <a href="#dependenciessetup-verifydependencies" id="dependenciessetup-verifydependencies"></a>

As a quick check to verify that all dependencies have been correctly installed, you can run the following commands

* Docker:

  ```bash
  docker run hello-world
  ```

{% hint style="info" %}
For offline installations, you can check docker with `docker ps` command
{% endhint %}

* Docker compose :

  ```bash
  docker compose --version
  ```

{% hint style="warning" %}
Docker versions older than 23 must use`docker-compose` command instead of `docker compose`
{% endhint %}

* AWS CLI:

  ```bash
  aws --version
  ```


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.akamas.io/akamas-docs/3.1.3/installing-akamas/install-akamas-dependencies.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
