From 08600ddc685558d8504eb94bbbf382230f6de386 Mon Sep 17 00:00:00 2001 From: tastelikefeet <58414341+tastelikefeet@users.noreply.github.com> Date: Wed, 30 Oct 2024 01:36:59 +0800 Subject: [PATCH] Fix the log to correct guide user to install modelscope (#9793) Signed-off-by: yuze.zyz --- vllm/transformers_utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/transformers_utils/__init__.py b/vllm/transformers_utils/__init__.py index 74ca3962..eeec029f 100644 --- a/vllm/transformers_utils/__init__.py +++ b/vllm/transformers_utils/__init__.py @@ -9,7 +9,7 @@ if VLLM_USE_MODELSCOPE: if version.parse(modelscope.__version__) <= version.parse('1.18.0'): raise ImportError( 'Using vLLM with ModelScope needs modelscope>=1.18.1, please ' - 'install by `pip install modelscope>=1.18.1`') + 'install by `pip install modelscope -U`') from modelscope.utils.hf_util import patch_hub