From 8f5fba97b865dc1c6f66b58a04e2c5f753e97a22 Mon Sep 17 00:00:00 2001 From: Kalvin C Date: Fri, 28 Feb 2025 15:56:21 -0800 Subject: [PATCH] feat: install python3.10 in uvx shim before uv (#1449) --- ui/desktop/src/bin/uvx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/desktop/src/bin/uvx b/ui/desktop/src/bin/uvx index 2ddb1969..3e506081 100755 --- a/ui/desktop/src/bin/uvx +++ b/ui/desktop/src/bin/uvx @@ -56,6 +56,10 @@ which hermit >> "$LOG_FILE" log "Initializing hermit." hermit init >> "$LOG_FILE" +# Initialize python >= 3.10 +log "hermit install python 3.10" +hermit install python3@3.10 >> "$LOG_FILE" + # Install UV for python using hermit log "Installing UV with hermit." hermit install uv >> "$LOG_FILE"