Page cover

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:

    sudo apt-get install docker.io
    
  2. Deploy the node:

    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:

    python main.py
    

Node Registration

To connect nodes to the Ambient AGI ecosystem:

  • Use the CLI for setup and configuration.

  • Register nodes to enable seamless interaction with agents and data sources.

Last updated