From 07dab76e3bda5b737a068876874855190925e698 Mon Sep 17 00:00:00 2001 From: Stefano Date: Fri, 23 May 2025 14:11:51 -0500 Subject: [PATCH] Install Python packages with --ignore-installed to prevent conflicts with RPM packages --- infrastructure/userdata.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure/userdata.sh b/infrastructure/userdata.sh index 49d5361..ab49ba3 100644 --- a/infrastructure/userdata.sh +++ b/infrastructure/userdata.sh @@ -13,7 +13,8 @@ cd /home/ec2-user git clone ${REPO_URL} cd iptv-updater-aws -pip3 install -r requirements.txt +# Install Python packages with --ignore-installed to prevent conflicts with RPM packages +pip3 install --ignore-installed -r requirements.txt # Create systemd service file cat << 'EOF' > /etc/systemd/system/iptv-updater.service