Follow these steps for Debian-based (Ubuntu, Mint) or Arch-based (EndeavourOS) systems. It is highly recommended to use a virtual environment (venv) to avoid interfering with system Python packages.
- Install System Dependencies: Use
apt for Debian or pacman for Arch to install ffmpeg, python3-pip, and tk. - Setup Virtual Environment:
- Navigate to the repo directory.
- Create a venv:
python3 -m venv venv. - Activate it:
source venv/bin/activate.
- Install Python Dependencies:
pip install -r requirements.txt. - Run:
python UVR.py.
# Debian-based
sudo apt update && sudo apt upgrade
sudo apt-get install -y ffmpeg python3-pip python3-tk
# Arch-based
sudo pacman -Syu
sudo pacman -S ffmpeg python-pip tk
# Virtual Environment Setup
cd /path/to/ultimatevocalremovergui
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python UVR.py