Skip to main content
Version: Current

IntelliBuddies AI Command Center Installation

Overview

This guide describes how to install the IntelliBuddies AI Command Center package from the IntelliBuddies APT repository on supported Ubuntu and Debian-based Linux distributions.

Prerequisites

Before you begin, ensure that your system meets the following requirements:

  • A system running Ubuntu.
  • sudo privileges.
  • Internet or internal network access to the repository (e.g., https://repository.intellibuddies.com).

Step 1: Add the GPG Signing Key

Add the IntelliBuddies GPG signing key to your system to verify the authenticity and integrity of the repository packages:

wget -qO - https://repository.intellibuddies.com/repos/apt/pub.asc | sudo tee /etc/apt/trusted.gpg.d/ai-command-center.asc

Step 2: Add the APT Repository

Add the appropriate repository based on the release type you want to install.

  • Stable Release:
. /etc/os-release && echo "deb [signedby=/etc/apt/trusted.gpg.d/ai-command-center.asc] https://repository.intellibuddies.com/repos/apt $VERSION_CODENAME-ai-command-center stable" | sudo tee /etc/apt/sources.list.d/ai-command-center.list
  • Beta Release:
. /etc/os-release && echo "deb [signedby=/etc/apt/trusted.gpg.d/ai-command-center.asc] https://repository.intellibuddies.com/repos/apt $VERSION_CODENAME-ai-command-center beta" | sudo tee /etc/apt/sources.list.d/ai-command-center.list

Step 3: Update the APT Package Cache

Update the local package index to include the newly added repository.

sudo apt update

Step 4: Install AI Command Center

This command installs or upgrades AI Command Center to the latest version:

sudo apt install ai-command-center

Install a Specific Version:

  • List all available versions:
apt list -a ai-command-center
  • Install the required version:
sudo apt install ai-command-center=<version>

Step 5: Uninstall AI Command Center

To remove the AI Command Center package from your system:

sudo apt remove ai-command-center