Create postinstall
Browse files- postinstall +8 -0
postinstall
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
echo "🔧 Forcing correct huggingface_hub version..."
|
| 4 |
+
|
| 5 |
+
pip uninstall -y huggingface-hub
|
| 6 |
+
pip install huggingface_hub==0.29.1 --force-reinstall
|
| 7 |
+
|
| 8 |
+
echo "✅ huggingface_hub pinned successfully"
|