mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-13 14:56:11 -04:00
The standalone Python release used by libbackend does not publish a 3.11.18 artifact. Pin Whisper-Medusa to the available 3.11.13 build and cover the generated download URL. Assisted-by: Codex:gpt-5 [systematic-debugging] Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
backend_dir=$(dirname "$0")
|
|
if [ -d "$backend_dir/common" ]; then
|
|
source "$backend_dir/common/libbackend.sh"
|
|
else
|
|
source "$backend_dir/../common/libbackend.sh"
|
|
fi
|
|
|
|
PYTHON_VERSION="3.11"
|
|
PYTHON_PATCH="13"
|
|
installRequirements
|