Spaces:
Running
Running
File size: 386 Bytes
905b8ff 5ebcc12 3e6e915 905b8ff 5ebcc12 3e6e915 5ebcc12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
set -e
echo "π¦ Installing dependencies from requirements.txt..."
pip install --no-cache-dir -r requirements.txt
echo "π Forcing correct huggingface-hub version..."
pip install --no-cache-dir --force-reinstall huggingface-hub==0.13.4
echo "π Checking installed huggingface-hub version..."
pip show huggingface-hub | grep Version
echo "β
Installation complete." |