Add scripts/install_ubuntu.sh

This commit is contained in:
2026-09-02 16:41:24 +03:00
parent 5052f471f7
commit 1a5b69e7dc
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Установка selectel-ml-tui на Ubuntu (22.04+)
set -euo pipefail
sudo apt-get update
sudo apt-get install -y python3 python3-venv python3-pip
cd "$(dirname "$0")/.."
make install
echo "Готово. Запуск: make run или .venv/bin/selectel-ml-tui run"