diff --git a/installers/new-installer.sh b/installers/new-installer.sh index 463d71f8f..8bd1d4b0e 100644 --- a/installers/new-installer.sh +++ b/installers/new-installer.sh @@ -18,9 +18,13 @@ if ! command -v uv > /dev/null 2>&1; then export PATH="$HOME/.cargo/bin:$PATH" fi +# Install Python using uv +echo "Installing Python $PYTHON_VERSION..." +uv python install "$PYTHON_VERSION" + # Direct installation using uv with specific Python version echo "Installing package..." -uv pip install --system --python "$PYTHON_VERSION" "git+$REPO_URL@$BRANCH" +uv pip install --python "$PYTHON_VERSION" "git+$REPO_URL@$BRANCH" echo echo "Installation complete!" \ No newline at end of file