Interfaz gráfica en GTK para gestionar servidores LLaMA en Linux, con soporte para modelos GGUF.
Aquí puedes ver cómo se ve la interfaz de LLaMA Server GUI al iniciarla:
Antes de instalar las dependencias de Python, asegúrate de tener instalados los siguientes paquetes del sistema:
sudo apt update
sudo apt install python3-gi python3-gi-cairo gir1.2-gtk-4.0 libgirepository1.0-dev libcairo2-devSe recomienda usar un entorno virtual para aislar las dependencias del proyecto:
⚠️ Advertencia: Esta aplicación requiere que/usr/bin/python3sea Python 3.8 o superior. Comprueba tu versión con:/usr/bin/python3 --versionSi tienes una versión más antigua, actualiza tu sistema antes de instalar.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtEl archivo requirements.txt contiene:
psutil
Before installing Python dependencies, make sure you have the following system packages installed:
sudo apt update
sudo apt install python3-gi python3-gi-cairo gir1.2-gtk-4.0 libgirepository1.0-dev libcairo2-devIt is recommended to use a virtual environment to isolate project dependencies:
⚠️ Warning: This application requires/usr/bin/python3to be Python 3.8 or newer. Check your version with:/usr/bin/python3 --versionIf you have an older version, please update your system before installing.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txtThe requirements.txt file contains:
psutil
Con las dependencias instaladas y el entorno virtual activado, ejecuta la aplicación con:
python3 gtk_llama_gui.pyWith all dependencies installed and the virtual environment activated, run the application with:
python3 gtk_llama_gui.pyPuedes instalar la aplicación y crear un acceso directo en tu escritorio fácilmente ejecutando el script de instalación:
bash install.shEsto realizará los siguientes pasos:
- Crea un entorno virtual Python (si no existe)
- Instala todas las dependencias necesarias
- Crea un lanzador de escritorio con icono
- Copia el lanzador a tu escritorio
Al finalizar, verás un acceso directo para iniciar la aplicación con doble clic.
You can install the application and create a desktop shortcut easily by running the installation script:
bash install.shThis will:
- Create a Python virtual environment (if it does not exist)
- Install all required dependencies
- Create a desktop launcher with icon
- Copy the launcher to your desktop
At the end, you will have a shortcut to start the application with a double click.
