rohitashva commited on
Commit
609f9b0
·
verified ·
1 Parent(s): 0e7bdd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -1,6 +1,11 @@
1
 
2
  # import subprocess
3
  # subprocess.run(["pip", "install", "https://huggingface.co/Priyanka-Balivada/en_Resume_Matching_Keywords/resolve/main/en_Resume_Matching_Keywords-any-py3-none-any.whl"])
 
 
 
 
 
4
  import en_Resume_Matching_Keywords # Now import your package
5
  # Import necessary libraries
6
  import streamlit as st
 
1
 
2
  # import subprocess
3
  # subprocess.run(["pip", "install", "https://huggingface.co/Priyanka-Balivada/en_Resume_Matching_Keywords/resolve/main/en_Resume_Matching_Keywords-any-py3-none-any.whl"])
4
+ import subprocess
5
+ import sys
6
+ # Install the locally uploaded .whl file
7
+ subprocess.run([sys.executable, "-m", "pip", "install", "en_Resume_Matching_Keywords-any-py3-none-any.whl"])
8
+
9
  import en_Resume_Matching_Keywords # Now import your package
10
  # Import necessary libraries
11
  import streamlit as st