kerzel's picture
full code again
5a1b5f2
#!/bin/bash
# postBuild script to run after pip install from requirements.txt
echo "Running postBuild script..."
# Upgrade or install a specific version of gradio (example: 4.44.1)
pip install --upgrade gradio==4.44.1
# (Optional) install or upgrade other packages if needed
# pip install --upgrade some-package==version
echo "postBuild complete."