Spaces:
Build error
Build error
Update install.sh
Browse files- install.sh +6 -4
install.sh
CHANGED
@@ -1,8 +1,10 @@
|
|
1 |
#!/bin/bash
|
2 |
set -e
|
3 |
|
4 |
-
echo "Installing
|
5 |
-
pip install --no-cache-dir
|
6 |
|
7 |
-
echo "
|
8 |
-
pip install --no-cache-dir -
|
|
|
|
|
|
1 |
#!/bin/bash
|
2 |
set -e
|
3 |
|
4 |
+
echo "Installing main dependencies..."
|
5 |
+
pip install --no-cache-dir -r requirements.txt
|
6 |
|
7 |
+
echo "Reinstalling correct huggingface-hub version..."
|
8 |
+
pip install --no-cache-dir --force-reinstall huggingface-hub==0.13.4
|
9 |
+
|
10 |
+
echo "✅ Installation complete."
|