Spaces:
Runtime error
Runtime error
File size: 404 Bytes
919858d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Install Debian packages
sudo apt-get update
sudo apt-get install -qq -y build-essential ffmpeg aria2
# Upgrade pip and setuptools
pip install --upgrade pip
pip install --upgrade setuptools
# Install wheel package (built-package format for Python)
pip install wheel
# Install Python packages using pip
pip install -r requirements.txt
# Run application locally at http://127.0.0.1:7860
python app.py
|