# Setup & Deployment

### **Docker Installation**

#### macOS (M1/M2 Chips)

1. Install Docker Desktop from the official website.
2. Run the following command:

```
docker run -d --name ambientagi-node ambientagi/node:latest
```

#### Windows

1. Install Docker Desktop for Windows.
2. Use PowerShell:

```
docker run -d --name ambientagi-node ambientagi/node:latest
```

#### Linux

1. Install Docker via package manager:

   ```bash
   sudo apt-get install docker.io

   ```
2. Deploy the node:

   ```bash
   docker run -d --name ambientagi-node ambientagi/node:latest

   ```

#### Manual Installation

1. Clone the repository from GitHub.
2. Install dependencies using `pip install -r requirements.txt`.
3. Start the service with:

   ```bash
   python main.py

   ```

#### Node Registration

To connect nodes to the [Ambient AGI](https://www.ambientagi.ai/) ecosystem:

* Use the CLI for setup and configuration.
* Register nodes to enable seamless interaction with agents and data sources.


---

# 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.ambientagi.ai/setup-and-deployment.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.
