mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-20 13:13:11 +00:00
b897d47e0f
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
33 lines
1.6 KiB
Bash
Executable File
33 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
EXTRA_PIP_INSTALL_FLAGS="--no-build-isolation"
|
|
|
|
source $(dirname $0)/../common/libbackend.sh
|
|
|
|
# This is here because the Intel pip index is broken and returns 200 status codes for every package name, it just doesn't return any package links.
|
|
# This makes uv think that the package exists in the Intel pip index, and by default it stops looking at other pip indexes once it finds a match.
|
|
# We need uv to continue falling through to the pypi default index to find optimum[openvino] in the pypi index
|
|
# the --upgrade actually allows us to *downgrade* torch to the version provided in the Intel pip index
|
|
if [ "x${BUILD_PROFILE}" == "xintel" ]; then
|
|
EXTRA_PIP_INSTALL_FLAGS+=" --upgrade --index-strategy=unsafe-first-match"
|
|
fi
|
|
|
|
# We don't embed this into the images as it is a large dependency and not always needed.
|
|
# Besides, the speed inference are not actually usable in the current state for production use-cases.
|
|
if [ "x${BUILD_TYPE}" == "x" ] && [ "x${FROM_SOURCE}" == "xtrue" ]; then
|
|
ensureVenv
|
|
# https://docs.vllm.ai/en/v0.6.1/getting_started/cpu-installation.html
|
|
if [ ! -d vllm ]; then
|
|
git clone https://github.com/vllm-project/vllm
|
|
fi
|
|
pushd vllm
|
|
uv pip install wheel packaging ninja "setuptools>=49.4.0" numpy typing-extensions pillow setuptools-scm grpcio==1.67.1 protobuf bitsandbytes
|
|
uv pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu
|
|
VLLM_TARGET_DEVICE=cpu python setup.py install
|
|
popd
|
|
rm -rf vllm
|
|
else
|
|
installRequirements
|
|
fi
|