| # Install Debian packages | |
| sudo apt-get update | |
| sudo apt-get install -qq -y build-essential ffmpeg aria2 espeak-ng | |
| # Upgrade pip and setuptools | |
| pip install --upgrade pip | |
| pip install --upgrade setuptools | |
| # Install wheel package (built-package format for Python) | |
| pip install wheel | |
| # Install audiocraft | |
| pip install -e git+https://github.com/facebookresearch/audiocraft.git@c5157b5bf14bf83449c17ea1eeb66c19fb4bc7f0#egg=audiocraft | |
| # Install Python packages using pip | |
| pip install -r requirements.txt | |
| # Run application locally at http://127.0.0.1:7860 | |
| python app.py | |
