From a5f39d0f2e046524df1f091acd96d06eb0c8f0b1 Mon Sep 17 00:00:00 2001 From: Qubitium-ModelCloud Date: Wed, 22 Oct 2025 21:35:29 +0800 Subject: [PATCH] Update README with python3-dev and ninja requirements Added installation instructions for python3-dev and ninja. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f008ef433..c68ef9f3c 100644 --- a/README.md +++ b/README.md @@ -224,8 +224,13 @@ uv pip install -v gptqmodel --no-build-isolation # clone repo git clone https://github.com/ModelCloud/GPTQModel.git && cd GPTQModel +# python3-dev is required +apt install python3-dev +# ninja is required to speed up kernel compile by many factors +pip install ninja + # pip: compile and install -# You can install optional modules like autoround, ipex, vllm, sglang, bitblas. +# You can install optional modules like vllm, sglang, bitblas. # Example: pip install -v --no-build-isolation .[vllm,sglang,bitblas] pip install -v . --no-build-isolation ```