From 302a0145e559ddcbc4f42f1d8aee4e4a84bd4ccc Mon Sep 17 00:00:00 2001 From: dltn <6599399+dltn@users.noreply.github.com> Date: Fri, 22 Nov 2024 13:32:54 -0800 Subject: [PATCH] we do want prints in print_pip_install_help --- llama_stack/distribution/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_stack/distribution/build.py b/llama_stack/distribution/build.py index 19b358a77..fb4b6a161 100644 --- a/llama_stack/distribution/build.py +++ b/llama_stack/distribution/build.py @@ -90,12 +90,12 @@ def get_provider_dependencies( def print_pip_install_help(providers: Dict[str, List[Provider]]): normal_deps, special_deps = get_provider_dependencies(providers) - log.info( + print( f"Please install needed dependencies using the following commands:\n\n\tpip install {' '.join(normal_deps)}" ) for special_dep in special_deps: log.info(f"\tpip install {special_dep}") - log.info() + print() def build_image(build_config: BuildConfig, build_file_path: Path):