We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2258e2 commit c23f56dCopy full SHA for c23f56d
installers/new-installer.sh
@@ -18,9 +18,13 @@ if ! command -v uv > /dev/null 2>&1; then
18
export PATH="$HOME/.cargo/bin:$PATH"
19
fi
20
21
+# Install Python using uv
22
+echo "Installing Python $PYTHON_VERSION..."
23
+uv python install "$PYTHON_VERSION"
24
+
25
# Direct installation using uv with specific Python version
26
echo "Installing package..."
-uv pip install --system --python "$PYTHON_VERSION" "git+$REPO_URL@$BRANCH"
27
+uv pip install --python "$PYTHON_VERSION" "git+$REPO_URL@$BRANCH"
28
29
echo
30
echo "Installation complete!"
0 commit comments