mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 15:23:51 +00:00
fix PIP_ARGS
This commit is contained in:
parent
8ff9523747
commit
50775b7120
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ ensure_conda_env_python310() {
|
||||||
echo "Installing from LLAMA_TOOLCHAIN_DIR: $LLAMA_TOOLCHAIN_DIR"
|
echo "Installing from LLAMA_TOOLCHAIN_DIR: $LLAMA_TOOLCHAIN_DIR"
|
||||||
pip install -e "$LLAMA_TOOLCHAIN_DIR"
|
pip install -e "$LLAMA_TOOLCHAIN_DIR"
|
||||||
else
|
else
|
||||||
pip install $PIP_ARGS llama-toolchain
|
pip install llama-toolchain
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$LLAMA_MODELS_DIR" ]; then
|
if [ -n "$LLAMA_MODELS_DIR" ]; then
|
||||||
|
@ -89,7 +89,7 @@ ensure_conda_env_python310() {
|
||||||
# Install pip dependencies
|
# Install pip dependencies
|
||||||
if [ -n "$pip_dependencies" ]; then
|
if [ -n "$pip_dependencies" ]; then
|
||||||
echo "Installing pip dependencies: $pip_dependencies"
|
echo "Installing pip dependencies: $pip_dependencies"
|
||||||
pip install $PIP_ARGS $pip_dependencies
|
pip install $pip_dependencies
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue