Update app.py
Browse files
app.py
CHANGED
@@ -103,5 +103,5 @@ app = gr.Interface(
|
|
103 |
)
|
104 |
|
105 |
if __name__ == "__main__":
|
106 |
-
print(subprocess.run(["apt-get update && apt-get install -y chromium-chromedriver"]))
|
107 |
app.launch()
|
|
|
103 |
)
|
104 |
|
105 |
if __name__ == "__main__":
|
106 |
+
print(subprocess.run(["apt-get update && apt-get install -y chromium-chromedriver"], shell=True))
|
107 |
app.launch()
|