mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-19 04:51:18 -05:00
11 lines
231 B
Bash
Executable File
11 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
cd "$GIT_ROOT" || exit 1
|
|
|
|
pip install -e "$GIT_ROOT/openllm-core" -v
|
|
pip install -e "$GIT_ROOT/openllm-client" -v
|
|
pip install -e "$GIT_ROOT/openllm-python" -v
|