We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 590bbb0 + 7c787d5 commit e04442dCopy full SHA for e04442d
1 file changed
deploy.sh
@@ -30,9 +30,6 @@ echo "Updating system packages..."
30
sudo apt-get update
31
sudo apt-get upgrade -y
32
33
-echo "Installing system dependencies..."
34
-sudo apt-get install -y curl python3.12 python3.12-venv
35
-
36
echo "Installing UV..."
37
if command -v uv &> /dev/null; then
38
echo "UV already installed, skipping..."
@@ -44,6 +41,9 @@ else
44
41
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
45
42
fi
46
43
+echo "Installing Python 3.12 via UV..."
+uv python install 3.12
+
47
echo "Cloning repository..."
48
cd ~
49
if [ -d "ftw-inference-api" ]; then
0 commit comments