Documentation Index
Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt
Use this file to discover all available pages before exploring further.
The Galtea CLI ships as a single galtea binary, repackaged for the channels you already use. Pick the tab that matches your platform.
macOS & Linux (Homebrew)
Linux (Debian/Ubuntu)
Linux (Fedora/RHEL)
Python (any OS)
If you have Homebrew (macOS) or Linuxbrew, the tap auto-installs on first use:brew install galtea-ai/tap/galtea
Apple Silicon, Intel macOS, and Linux on x86_64 / arm64 are all supported. Add the Galtea APT repository (one-time GPG key + sources.list bootstrap), then install the CLI:sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://pkgs.galtea.ai/public.key \
| sudo tee /etc/apt/keyrings/galtea.asc > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/galtea.asc] \
https://pkgs.galtea.ai/apt stable main" \
| sudo tee /etc/apt/sources.list.d/galtea.list
sudo apt update
sudo apt install galtea
Add the Galtea YUM repository (one-time GPG key import + repo file), then install the CLI:sudo rpm --import https://pkgs.galtea.ai/public.key
sudo tee /etc/yum.repos.d/galtea.repo <<'EOF'
[galtea]
name=Galtea CLI
baseurl=https://pkgs.galtea.ai/yum
enabled=1
gpgcheck=1
gpgkey=https://pkgs.galtea.ai/public.key
EOF
sudo dnf install galtea
Rocky Linux and AlmaLinux are supported via the same repository. If you already have Python 3.9+ on your machine, you can install the CLI from PyPI:The PyPI package ships per-platform wheels that bundle the same galtea binary used by every other channel. The galtea console-script entry point lands on your PATH automatically.For more information, visit the galtea-cli PyPI page.
Verify installation
Once installed, confirm the binary is on your PATH and prints a version:
Update
Use the package-manager gesture native to the channel you installed from:
macOS & Linux (Homebrew)
Linux (Debian/Ubuntu)
Linux (Fedora/RHEL)
Python (any OS)
brew update && brew upgrade galtea
sudo apt update && sudo apt upgrade galtea
pip install --upgrade galtea-cli
Uninstall
macOS & Linux (Homebrew)
Linux (Debian/Ubuntu)
Linux (Fedora/RHEL)
Python (any OS)
brew uninstall galtea
# Optional: drop the tap entirely
brew untap galtea-ai/tap
Troubleshooting
If you run into any issues — installing, verifying, updating, or uninstalling — contact our support team at support@galtea.ai.