From 5a52a0131adf0b1a50d78591a5dae837b8a38bd8 Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Sun, 8 Mar 2026 18:49:55 +0000 Subject: [PATCH] add extras-no-deps install step for audio model support --- install_python_stack.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install_python_stack.py b/install_python_stack.py index c9b73034b4..4b14dbf25c 100644 --- a/install_python_stack.py +++ b/install_python_stack.py @@ -171,6 +171,13 @@ def install_python_stack() -> int: req=REQ_ROOT / "extras.txt", ) + # 3b. Extra dependencies (no-deps) — audio model support etc. + pip_install( + "Installing extras (no-deps)", + "--no-deps", "--no-cache-dir", + req=REQ_ROOT / "extras-no-deps.txt", + ) + # 4. Overrides (torchao, transformers) — force-reinstall pip_install( "Installing torchao + transformers overrides",