How to Install Private GPT | Host Your Own Private AI.

Опубликовано: 10 Сентябрь 2026
на канале: TameWriter 996
3,014
50

Commands:

sudo apt install build-essential gcc make python3.11

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Hom...)"

brew install poetry

git clone https://github.com/zylon-ai/private-g...

poetry install --extras "ui llms-llama-cpp embeddings-huggingface vector-stores-qdrant"
poetry run python scripts/setup
PGPT_PROFILES=local make run




Script:

#!/bin/bash
cd {INSERT INSTALL PATH HERE}
/home/linuxbrew/.linuxbrew/bin/poetry run python -m private_gpt




Service Script:

[Unit]
Description=Private GPT

[Service]
Type=simple
Restart=always
RestartSec=1
User={INSERT USERNAME HERE}
ExecStart={INSERT INSTALL PATH HERE}/Start.sh

[Install]
WantedBy=default.target