File size: 352 Bytes
5a1b5f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/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."
|