Spaces:
Sleeping
Sleeping
Create setup.sh
Browse files
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')"
|