mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-04 18:20:09 +00:00
20 lines
412 B
Bash
20 lines
412 B
Bash
#!/bin/bash
|
|
|
|
echo "Starting installation for macOS..."
|
|
|
|
# Install Python dependencies from requirements.txt
|
|
pip3 install -r requirements.txt
|
|
|
|
# make sure wget installed
|
|
brew install wget
|
|
|
|
# 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!" |