mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-29 03:14:19 +00:00
Fix build script
This commit is contained in:
parent
4a75d922a9
commit
bf0d111c53
1 changed files with 6 additions and 2 deletions
|
@ -86,7 +86,11 @@ ensure_conda_env_python310() {
|
||||||
llama-models==$TEST_PYPI_VERSION llama-stack==$TEST_PYPI_VERSION \
|
llama-models==$TEST_PYPI_VERSION llama-stack==$TEST_PYPI_VERSION \
|
||||||
$pip_dependencies
|
$pip_dependencies
|
||||||
if [ -n "$special_pip_deps" ]; then
|
if [ -n "$special_pip_deps" ]; then
|
||||||
$CONDA_PREFIX/bin/pip install --no-deps "$special_pip_deps"
|
IFS='#' read -ra parts <<<"$special_pip_deps"
|
||||||
|
for part in "${parts[@]}"; do
|
||||||
|
echo "$part"
|
||||||
|
$CONDA_PREFIX/bin/pip install $part
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# Re-installing llama-stack in the new conda environment
|
# Re-installing llama-stack in the new conda environment
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue