
Docker Installation
macOS (M1/M2 Chips)
Install Docker Desktop from the official website.
Run the following command:
docker run -d --name ambientagi-node ambientagi/node:latest
Windows
Install Docker Desktop for Windows.
Use PowerShell:
docker run -d --name ambientagi-node ambientagi/node:latest
Linux
Install Docker via package manager:
sudo apt-get install docker.io
Deploy the node:
docker run -d --name ambientagi-node ambientagi/node:latest
Manual Installation
Clone the repository from GitHub.
Install dependencies using
pip install -r requirements.txt
.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