Feat : installation script & readme update

This commit is contained in:
martin legrand
2025-03-13 15:52:37 +01:00
parent 0315d8e67f
commit b7eaee6b34
6 changed files with 134 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
echo "Starting installation for Linux..."
# Update package list
sudo apt-get update
# Install Python dependencies from requirements.txt
pip3 install -r requirements.txt
# Install Selenium for chromedriver
pip3 install selenium
# Install portaudio for pyAudio
sudo apt-get install -y portaudio19-dev python3-dev
echo "Installation complete for Linux!"