kfahn commited on
Commit
0f2505a
·
verified ·
1 Parent(s): 5eede23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -16,6 +16,10 @@ from Gradio_UI import GradioUI
16
 
17
  nest_asyncio.apply() # Ensure async works in a Jupyter/Colab/HF Spaces environment
18
 
 
 
 
 
19
  subprocess.run(["playwright", "install", "chromium"])
20
 
21
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
 
16
 
17
  nest_asyncio.apply() # Ensure async works in a Jupyter/Colab/HF Spaces environment
18
 
19
+ subprocess.run(["apt-get", "update"])
20
+ subprocess.run(["apt-get", "install", "-y", "libnss3", "libatk1.0-0", "libatk-bridge2.0-0"])
21
+
22
+
23
  subprocess.run(["playwright", "install", "chromium"])
24
 
25
  # Below is an example of a tool that does nothing. Amaze us with your creativity !