Spaces:
Sleeping
Sleeping
| # Update and install system dependencies | |
| apt-get update && apt-get install -y \ | |
| wkhtmltopdf \ | |
| curl \ | |
| libgl1-mesa-glx \ | |
| libglib2.0-0 \ | |
| libxrender1 \ | |
| libfontconfig1 \ | |
| libjpeg-dev \ | |
| libpng-dev \ | |
| libxext6 | |
| # Install Python dependencies from requirements.txt | |
| pip install --no-cache-dir -r requirements.txt | |
| # Ensure wkhtmltopdf is accessible | |
| export PATH=$PATH:/usr/bin/wkhtmltopdf | |