Skip to main content
Version: 2.0.0

Setting up your own node

This guide provides the requisite knowledge necessary to quickly get started with installing a Gaia node.

Prerequisites

Before you get started, ensure that you have the following on your system:

SystemMinimum Requirements
OSX with Apple Silicon (M1-M4 chip)16GB RAM (32GB recommended)
Ubuntu Linux 20.04 with Nvidia CUDA 12 SDK8GB VRAM on GPU
Azure/AWSNvidia T4 GPU Instance

Learn more about system requirements.

Installing the node

  1. Use the following command to download the latest version of the Gaia node:
curl -sSfL 'https://github.com/GaiaNet-AI/gaianet-node/releases/latest/download/install.sh' | bash
  1. Run the command printed on the terminal to set up the environment path, it is started with source.

  2. Use the following command to initialize the Gaia node according to the configuration options in $HOME/gaianet/config.json. By default, the Gaia is initialized with a Llama 3.2 LLM and a knowledge base about Paris. This command could take some time since it will download a very large LLM file.

gaianet init
  1. Use the following command to start your node:
gaianet start

After starting your node

  • A successful start prints a public URL for the node. Opening a browser to that URL will display the node information and allow you to chat with the AI agent on the node.
... ... https://0xf63939431ee11267f4855a166e11cc44d24960c0.gaianet.xyz
  • To stop the node: gaianet stop

Video Guide

Next steps