mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 21:37:21 +00:00
14 lines
252 B
Bash
14 lines
252 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
EXTRA_PIP_INSTALL_FLAGS="--no-build-isolation"
|
||
|
|
|
||
|
|
backend_dir=$(dirname $0)
|
||
|
|
if [ -d $backend_dir/common ]; then
|
||
|
|
source $backend_dir/common/libbackend.sh
|
||
|
|
else
|
||
|
|
source $backend_dir/../common/libbackend.sh
|
||
|
|
fi
|
||
|
|
|
||
|
|
installRequirements
|