Spaces:
Sleeping
Sleeping
Update setup.sh
Browse files
setup.sh
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
#!/bin/bash
|
2 |
|
|
|
3 |
pip install --upgrade pip
|
4 |
-
pip install -r requirements.txt
|
5 |
|
6 |
-
|
7 |
-
|
|
|
8 |
|
9 |
-
|
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')"
|