From f19e252fb617592cd0728e19b37b4d71381245a3 Mon Sep 17 00:00:00 2001 From: Sushanth Reddy Date: Wed, 20 Aug 2025 21:12:44 -0700 Subject: [PATCH] Update requirements.txt Fixed package conflict : fix INFO: pip is looking at multiple versions of vllm to determine which version is compatible with other requirements. This could take a while. ERROR: Cannot install -r requirements.txt (line 2) and transformers==4.49.0 because these package versions have conflicting dependencies. The conflict is caused by: The user requested transformers==4.49.0 vllm 0.8.3 depends on transformers>=4.51.0 To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependency conflict ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts --- requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 19a8902..cfb147d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -transformers==4.49.0 -vllm==0.8.3 +vllm<0.8.3 +transformers>=4.51.0 qwen_agent qwen_vl_utils torch torchvision -torchaudio \ No newline at end of file +torchaudio