Princeaka commited on
Commit
3e6e915
·
verified ·
1 Parent(s): 6285dcf

Update install.sh

Browse files
Files changed (1) hide show
  1. install.sh +6 -4
install.sh CHANGED
@@ -1,8 +1,10 @@
1
  #!/bin/bash
2
  set -e
3
 
4
- echo "Installing huggingface-hub==0.13.4 first..."
5
- pip install --no-cache-dir huggingface-hub==0.13.4
6
 
7
- echo "Installing remaining dependencies..."
8
- pip install --no-cache-dir -r requirements.txt
 
 
 
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."