Merge pull request #124 from Fosowl/dev

Add no cache dir to installation script and ensure wheel is up to date
This commit is contained in:
Martin
2025-04-19 09:56:39 +02:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -30,6 +30,6 @@ sudo apt install -y docker-compose
# Install Selenium for chromedriver # Install Selenium for chromedriver
pip3 install selenium pip3 install selenium
# Install Python dependencies from requirements.txt # Install Python dependencies from requirements.txt
pip3 install -r requirements.txt pip3 install -r requirements.txt --no-cache-dir
echo "Installation complete for Linux!" echo "Installation complete for Linux!"
+3 -1
View File
@@ -20,9 +20,11 @@ brew install --cask chromedriver
brew install portaudio brew install portaudio
# update pip # update pip
python3 -m pip install --upgrade pip python3 -m pip install --upgrade pip
# upgrade setuptools and wheel
pip3 install --upgrade setuptools wheel
# Install Selenium # Install Selenium
pip3 install selenium pip3 install selenium
# Install Python dependencies from requirements.txt # Install Python dependencies from requirements.txt
pip3 install -r requirements.txt pip3 install -r requirements.txt --no-cache-dir
echo "Installation complete for macOS!" echo "Installation complete for macOS!"