diff --git a/README.md b/README.md index 1509726d..ce1dda63 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,14 @@ git clone https://github.com/ModelCloud/GPTQModel.git && cd GPTQModel # compile and install pip install -vvv --no-build-isolation . + +# If you have `uv` package version 0.1.16 or higher, you can use `uv pip` for potentially better dependency management +uv pip install -vvv --no-build-isolation . +``` + +### Script installation +```bash +bash install.sh ``` ### PIP (PENDING RELEASE) diff --git a/install.sh b/install.sh new file mode 100755 index 00000000..a684b5df --- /dev/null +++ b/install.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +INSTALL_COMMAND="pip install -vvv --no-build-isolation ." + +check_uv_version() { + python - <