rohitashva commited on
Commit
9d0f633
·
verified ·
1 Parent(s): d206466

Update setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +5 -5
setup.sh CHANGED
@@ -1,13 +1,13 @@
1
  #!/bin/bash
2
 
 
3
  pip install --upgrade pip
4
- pip install -r requirements.txt
5
 
6
- # Download the .whl file
7
- wget -O en_Resume_Matching_Keywords.whl "https://huggingface.co/Priyanka-Balivada/en_Resume_Matching_Keywords/resolve/main/en_Resume_Matching_Keywords-any-py3-none-any.whl"
 
8
 
9
- # Install the .whl file
10
- pip install en_Resume_Matching_Keywords.whl
11
 
12
  # Verify installation
13
  python -c "import en_Resume_Matching_Keywords; print('Package installed successfully')"
 
1
  #!/bin/bash
2
 
3
+ # Upgrade pip
4
  pip install --upgrade pip
 
5
 
6
+ if [ -f requirements.txt ]; then
7
+ pip install -r requirements.txt
8
+ fi
9
 
10
+ pip install en_Resume_Matching_Keywords-any-py3-none-any.whl
 
11
 
12
  # Verify installation
13
  python -c "import en_Resume_Matching_Keywords; print('Package installed successfully')"