From 53ddc40b3612daad2ceb85e221d01ab71bf4dcc1 Mon Sep 17 00:00:00 2001 From: andrew Date: Wed, 2 Sep 2026 16:41:25 +0300 Subject: [PATCH] Add scripts/install_macos.sh --- scripts/install_macos.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/install_macos.sh diff --git a/scripts/install_macos.sh b/scripts/install_macos.sh new file mode 100644 index 0000000..9517d7d --- /dev/null +++ b/scripts/install_macos.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Установка selectel-ml-tui на macOS (Homebrew) +set -euo pipefail + +brew install python@3.11 + +cd "$(dirname "$0")/.." +make install + +echo "Готово. Запуск: make run или .venv/bin/selectel-ml-tui run"