logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt
How to install vxcontrol/pentagi. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

vxcontrol/pentagi Installation Guide

How to install vxcontrol/pentagi. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for vxcontrol/pentagi. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i vxcontrol/pentagi
or

Install via npx

npx @hexmos/ipm i vxcontrol/pentagi

Prerequisites

Docker

containerization

Version: >= N/A

Docker Compose

containerization

Version: >= N/A

Podman

containerization

Version: >= N/A

Go

programming_language

Version: >= 1.20

Node.js

programming_language

Version: >= 18

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Quick Installation (Linux amd64)

mkdir -p pentagi && cd pentagi

wget -O installer.zip https://pentagi.com/downloads/linux/amd64/installer-latest.zip

unzip installer.zip

sudo ./installer

Manual Installation (Linux/macOS)

mkdir pentagi && cd pentagi

curl -o .env https://raw.githubusercontent.com/vxcontrol/pentagi/master/.env.example

curl -o example.custom.provider.yml https://raw.githubusercontent.com/vxcontrol/pentagi/master/examples/configs/custom-openai.provider.yml

curl -o example.ollama.provider.yml https://raw.githubusercontent.com/vxcontrol/pentagi/master/examples/configs/ollama-llama318b.provider.yml

perl -i -pe 's/#.*$//' .env

curl -O https://raw.githubusercontent.com/vxcontrol/pentagi/master/docker-compose.yml

docker compose up -d

Manual Installation (Windows)

New-Item -ItemType Directory -Path .\

Set-Location .\

Invoke-WebRequest -Uri https://pentagi.com/downloads/windows/amd64/installer-latest.zip -OutFile .
installer.zip

Expand-Archive -Path .
installer.zip -DestinationPath .

.\installer.ps1

Running PentAGI with Podman (Rootless)

podman-compose down

podman-compose up -d --force-recreate

Post Installation Steps

  • Visit https://localhost:8443 to access the PentAGI Web UI.
  • Default login: admin@pentagi.com / admin
  • Configure LLM providers and API keys in the .env file for full functionality.