diff --git a/docs/Backend Configuration.md b/docs/Backend Configuration.md index e89ac6d..b42700f 100644 --- a/docs/Backend Configuration.md +++ b/docs/Backend Configuration.md @@ -55,8 +55,9 @@ To ensure compatibility with your Home Assistant and Python versions, select the ## Build your own 1. Clone the repository on the target machine that will be running Home Assistant +2. Ensure `docker` is installed 2. Run the `scripts/run_docker_to_make_wheels.sh` script -3. The wheel files will be placed in the folder you executed the script from +3. The compatible wheel files will be placed in the folder you executed the script from # text-generation-webui diff --git a/scripts/run_docker_to_make_wheels.sh b/scripts/run_docker_to_make_wheels.sh index a63291b..67c067d 100755 --- a/scripts/run_docker_to_make_wheels.sh +++ b/scripts/run_docker_to_make_wheels.sh @@ -1,12 +1,12 @@ #!/bin/bash -VERSION_TO_BUILD="v0.2.56" +VERSION_TO_BUILD="v0.2.77" # make python11 wheels -docker run -it --rm \ - --entrypoint bash \ - -v $(pwd):/tmp/dist \ - homeassistant/home-assistant:2023.12.4 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD +# docker run -it --rm \ +# --entrypoint bash \ +# -v $(pwd):/tmp/dist \ +# homeassistant/home-assistant:2023.12.4 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD # make python 12 wheels docker run -it --rm \