rohitashva commited on
Commit
d206466
·
verified ·
1 Parent(s): 653c25c

Create setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +13 -0
setup.sh ADDED
@@ -0,0 +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')"