Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 !
|