Princeaka commited on
Commit
5ebcc12
Β·
verified Β·
1 Parent(s): 236eee5

Update install.sh

Browse files
Files changed (1) hide show
  1. 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 "πŸ”„ Reinstalling correct huggingface-hub version..."
8
  pip install --no-cache-dir --force-reinstall huggingface-hub==0.13.4
9
 
10
- echo "βœ… Installation complete."
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."