Skip to content

Commit 6ecce16

Browse files
committed
Model: Fix log if exl2 version is too low
Switch to pyproject syntax. Signed-off-by: kingbri <[email protected]>
1 parent f534930 commit 6ecce16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backends/exllamav2/utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ def check_exllama_version():
1818
"Or you can manually run a requirements update "
1919
"using the following command:\n\n"
2020
"For CUDA 12.1:\n"
21-
"pip install --upgrade -r requirements.txt\n\n"
21+
"pip install --upgrade .[cu121]\n\n"
2222
"For CUDA 11.8:\n"
23-
"pip install --upgrade -r requirements-cu118.txt\n\n"
23+
"pip install --upgrade .[cu118]\n\n"
2424
"For ROCm:\n"
25-
"pip install --upgrade -r requirements-amd.txt\n\n"
25+
"pip install --upgrade .[amd]\n\n"
2626
)
2727
else:
2828
logger.info(f"ExllamaV2 version: {current_version}")

0 commit comments

Comments
 (0)