Spaces:
Build error
Build error
Update install.sh
Browse files- install.sh +6 -4
install.sh
CHANGED
@@ -1,11 +1,13 @@
|
|
1 |
#!/bin/bash
|
2 |
set -e
|
3 |
|
4 |
-
echo "π¦ Installing dependencies..."
|
5 |
pip install --no-cache-dir -r requirements.txt
|
6 |
|
7 |
-
echo "π
|
8 |
pip install --no-cache-dir --force-reinstall huggingface-hub==0.13.4
|
9 |
|
10 |
-
echo "
|
11 |
-
pip show huggingface-hub
|
|
|
|
|
|
1 |
#!/bin/bash
|
2 |
set -e
|
3 |
|
4 |
+
echo "π¦ Installing dependencies from requirements.txt..."
|
5 |
pip install --no-cache-dir -r requirements.txt
|
6 |
|
7 |
+
echo "π Forcing correct huggingface-hub version..."
|
8 |
pip install --no-cache-dir --force-reinstall huggingface-hub==0.13.4
|
9 |
|
10 |
+
echo "π Checking installed huggingface-hub version..."
|
11 |
+
pip show huggingface-hub | grep Version
|
12 |
+
|
13 |
+
echo "β
Installation complete."
|