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/pentagior
Install via npx
npx @hexmos/ipm i vxcontrol/pentagiPrerequisites
Docker
containerizationVersion: >= N/A
Docker Compose
containerizationVersion: >= N/A
Podman
containerizationVersion: >= N/A
Go
programming_languageVersion: >= 1.20
Node.js
programming_languageVersion: >= 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 ./installerManual 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 -dManual 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.ps1Running PentAGI with Podman (Rootless)
podman-compose down
podman-compose up -d --force-recreatePost 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.
