Initial version of gui for our T-SQL AI framework.
This commit is contained in:
27
docs/installation.md
Normal file
27
docs/installation.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# Installation
|
||||
|
||||
## Arch Linux (Pacman)
|
||||
```bash
|
||||
sudo pacman -S pyside6 python-requests
|
||||
```
|
||||
|
||||
## venv (optional)
|
||||
```bash
|
||||
python -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install PySide6 requests
|
||||
```
|
||||
|
||||
## Start (Wayland/Hyprland)
|
||||
```bash
|
||||
python sql_ai_gui.py
|
||||
```
|
||||
Falls nötig:
|
||||
```bash
|
||||
QT_QPA_PLATFORM=wayland python sql_ai_gui.py
|
||||
```
|
||||
|
||||
## Ollama (Docker) Minimal
|
||||
```bash
|
||||
docker run -d --name ollama --restart unless-stopped -p 127.0.0.1:11434:11434 -v /mnt/data/ollama:/root/.ollama ollama/ollama:latest
|
||||
```
|
||||
Reference in New Issue
Block a user