agenticSeek/scripts/macos_install.sh
2025-03-13 15:52:37 +01:00

17 lines
366 B
Bash

#!/bin/bash
echo "Starting installation for macOS..."
# Install Python dependencies from requirements.txt
pip3 install -r requirements.txt
# Install chromedriver using Homebrew
brew install --cask chromedriver
# Install portaudio for pyAudio using Homebrew
brew install portaudio
# Install Selenium
pip3 install selenium
echo "Installation complete for macOS!"