APPLE commited on
Commit
4b05e11
·
1 Parent(s): 4cafb76
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -8,7 +8,9 @@ def clone_repo(repo_url):
8
  def install_dependencies():
9
  st.write("Installing dependencies using Poetry...")
10
  os.chdir("form16-parser")
11
- os.system("poetry install")
 
 
12
 
13
  def main():
14
  st.title("GitHub Repo Cloner and Dependency Installer")
 
8
  def install_dependencies():
9
  st.write("Installing dependencies using Poetry...")
10
  os.chdir("form16-parser")
11
+ os.system("python -m pip install poetry")
12
+ os.system("python -m poetry install")
13
+ os.system("python -m poetry shell")
14
 
15
  def main():
16
  st.title("GitHub Repo Cloner and Dependency Installer")