| | #!/bin/bash |
| | set -e |
| |
|
| | printf "\033]0;Installer\007" |
| | clear |
| | rm -f *.bat |
| |
|
| | |
| | log_message() { |
| | local msg="$1" |
| | echo "$(date '+%Y-%m-%d %H:%M:%S') - $msg" |
| | } |
| |
|
| | |
| | find_python() { |
| | for py in python3.11 python3 python; do |
| | if command -v "$py" > /dev/null 2>&1; then |
| | echo "$py" |
| | return |
| | fi |
| | done |
| | log_message "No compatible Python installation found. Please install Python 3.11." |
| | exit 1 |
| | } |
| |
|
| | |
| | install_ffmpeg() { |
| | if command -v brew > /dev/null; then |
| | log_message "Installing FFmpeg using Homebrew on macOS..." |
| | brew install ffmpeg |
| | elif command -v apt > /dev/null; then |
| | log_message "Installing FFmpeg using apt..." |
| | sudo apt update && sudo apt install -y ffmpeg |
| | elif command -v pacman > /dev/null; then |
| | log_message "Installing FFmpeg using pacman..." |
| | sudo pacman -Syu --noconfirm ffmpeg |
| | elif command -v dnf > /dev/null; then |
| | log_message "Installing FFmpeg using dnf..." |
| | sudo dnf install -y ffmpeg --allowerasing || install_ffmpeg_flatpak |
| | else |
| | log_message "Unsupported distribution for FFmpeg installation. Trying Flatpak..." |
| | install_ffmpeg_flatpak |
| | fi |
| | } |
| |
|
| | |
| | install_ffmpeg_flatpak() { |
| | if command -v flatpak > /dev/null; then |
| | log_message "Installing FFmpeg using Flatpak..." |
| | flatpak install --user -y flathub org.freedesktop.Platform.ffmpeg |
| | else |
| | log_message "Flatpak is not installed. Installing Flatpak..." |
| | if command -v apt > /dev/null; then |
| | sudo apt install -y flatpak |
| | elif command -v pacman > /dev/null; then |
| | sudo pacman -Syu --noconfirm flatpak |
| | elif command -v dnf > /dev/null; then |
| | sudo dnf install -y flatpak |
| | elif command -v brew > /dev/null; then |
| | brew install flatpak |
| | else |
| | log_message "Unable to install Flatpak automatically. Please install Flatpak and try again." |
| | exit 1 |
| | fi |
| | flatpak install --user -y flathub org.freedesktop.Platform.ffmpeg |
| | fi |
| | } |
| |
|
| | install_python_ffmpeg() { |
| | log_message "Installing python-ffmpeg..." |
| | uv pip install python-ffmpeg |
| | } |
| |
|
| | |
| | prepare_install() { |
| | if [ -d ".venv" ]; then |
| | log_message "Virtual environment found. This implies Applio has been already installed or this is a broken install." |
| | printf "Do you want to execute run-applio.sh? (Y/N): " >&2 |
| | read -r r |
| | r=$(echo "$r" | tr '[:upper:]' '[:lower:]') |
| | if [ "$r" = "y" ]; then |
| | chmod +x run-applio.sh |
| | ./run-applio.sh && exit 0 |
| | else |
| | log_message "Continuing with the installation." |
| | rm -rf .venv |
| | create_venv |
| | fi |
| | else |
| | create_venv |
| | fi |
| | } |
| |
|
| | |
| | create_venv() { |
| | log_message "Creating virtual environment..." |
| | py=$(find_python) |
| |
|
| | curl -LsSf https://astral.sh/uv/install.sh | sh |
| | uv venv .venv --python 3.11 |
| |
|
| | log_message "Activating virtual environment..." |
| | source .venv/bin/activate |
| |
|
| | install_ffmpeg |
| | install_python_ffmpeg |
| |
|
| | log_message "Installing dependencies..." |
| | if [ -f "requirements.txt" ]; then |
| | uv pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu128 --index-strategy unsafe-best-match |
| | else |
| | log_message "requirements.txt not found. Please ensure it exists." |
| | exit 1 |
| | fi |
| |
|
| | finish |
| | } |
| |
|
| | |
| | finish() { |
| | clear |
| | echo "Applio has been successfully installed. Run the file run-applio.sh to start the web interface!" |
| | exit 0 |
| | } |
| |
|
| | |
| | if [ "$(uname)" = "Darwin" ]; then |
| | log_message "Detected macOS..." |
| | if ! command -v brew >/dev/null 2>&1; then |
| | log_message "Homebrew not found. Installing Homebrew..." |
| | /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |
| | fi |
| |
|
| | |
| | log_message "Checking Python versions..." |
| | log_message "python3 path: $(which python3)" |
| | log_message "python3.11 path: $(which python3.11 2>/dev/null || echo 'not found')" |
| | |
| | if command -v python3.11 >/dev/null 2>&1; then |
| | python_version=$(python3.11 --version | awk '{print $2}' | cut -d'.' -f1,2) |
| | else |
| | python_version=$(python3 --version | awk '{print $2}' | cut -d'.' -f1,2) |
| | fi |
| | |
| | log_message "Detected Python version: $python_version" |
| |
|
| | if [ "$python_version" = "3.11" ]; then |
| | log_message "Found compatible Python 3.11" |
| | else |
| | log_message "Python version $python_version is not 3.11. Installing Python 3.11 using Homebrew..." |
| | brew install python@3.11 |
| | export PATH="$(brew --prefix)/opt/python@3.11/bin:$PATH" |
| | |
| | log_message "Verifying installed Python version..." |
| | python_version=$(python3.11 --version | awk '{print $2}' | cut -d'.' -f1,2) |
| | if [ "$python_version" != "3.11" ]; then |
| | log_message "Failed to install Python 3.11. Current version: $python_version" |
| | exit 1 |
| | fi |
| | fi |
| |
|
| | brew install faiss |
| | export PYTORCH_ENABLE_MPS_FALLBACK=1 |
| | export PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 |
| | export PATH="$(brew --prefix)/bin:$PATH" |
| | elif [ "$(uname)" != "Linux" ]; then |
| | log_message "Unsupported operating system. Are you using Windows?" |
| | log_message "If yes, use the batch (.bat) file instead of this one!" |
| | exit 1 |
| | fi |
| |
|
| | prepare_install |
| |
|
| |
|
| |
|