mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-06 11:05:26 +00:00
17 lines
379 B
Bash
17 lines
379 B
Bash
#!/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 alsa-utils
|
|
|
|
echo "Installation complete for Linux!" |