From c3e9d124f1a474c2cdf0cb5cc0243b9bfba13051 Mon Sep 17 00:00:00 2001
From: Matan Sarsha <smatan84@gmail.com>
Date: Sat, 31 Aug 2024 13:31:27 +0300
Subject: [PATCH] feat(scripts): add free games claimer script

---
 install/freegamesclaimer-install.sh | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/install/freegamesclaimer-install.sh b/install/freegamesclaimer-install.sh
index de565325..79a3a436 100644
--- a/install/freegamesclaimer-install.sh
+++ b/install/freegamesclaimer-install.sh
@@ -28,11 +28,20 @@ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dea
 echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
 msg_ok "Set up Node.js Repository"
 
+
 msg_info "Installing Node.js"
 $STD apt-get update
 $STD apt-get install -y nodejs
 msg_ok "Installed Node.js"
 
+msg_info "Updating Python3"
+$STD apt-get install -y \
+  python3 \
+  python3-dev \
+  python3-pip
+rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
+msg_ok "Updated Python3"
+
 msg_info "Installing Free Games Claimer"
 git clone -q https://github.com/vogler/free-games-claimer.git /opt/freegamesclaimer
 cd /opt/freegamesclaimer