From 1a5b69e7dc0aab165877acb20f9138bd5969dfbf Mon Sep 17 00:00:00 2001 From: andrew Date: Wed, 2 Sep 2026 16:41:24 +0300 Subject: [PATCH] Add scripts/install_ubuntu.sh --- scripts/install_ubuntu.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/install_ubuntu.sh diff --git a/scripts/install_ubuntu.sh b/scripts/install_ubuntu.sh new file mode 100644 index 0000000..40ec98a --- /dev/null +++ b/scripts/install_ubuntu.sh @@ -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"