From 4fab4013b510ca244152abd371de7867398e83e2 Mon Sep 17 00:00:00 2001 From: Halcy0nic Date: Tue, 9 Jul 2024 14:27:38 -0600 Subject: [PATCH] Chore: Updating install script --- install-linux-mac.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/install-linux-mac.sh b/install-linux-mac.sh index f5607b4..6834550 100755 --- a/install-linux-mac.sh +++ b/install-linux-mac.sh @@ -27,9 +27,18 @@ else echo "Skipping Python3 installation." fi +# Create a requirements.txt file +cat < requirements.txt +beautifulsoup4==4.12.3 +Flask==2.3.2 +Flask_SocketIO==5.3.6 +MarkupSafe==2.1.3 +pyserial==3.5 +Requests==2.31.0 +EOT + # Install required Python packages -pip3 install flask flask-socketio pyserial beautifulsoup4 requests +pip3 install -r requirements.txt # Inform the user that the installation is complete echo "Installation complete. You can now run your application using: python3 your_script.py" -