Update app.py
Browse files
app.py
CHANGED
@@ -8,9 +8,11 @@ import gradio as gr
|
|
8 |
libraries = [
|
9 |
'transformers',
|
10 |
'gradio',
|
|
|
11 |
'python-pptx', # Correct name for pptx library
|
12 |
]
|
13 |
|
|
|
14 |
for library in libraries:
|
15 |
try:
|
16 |
subprocess.check_call(['pip', 'install', library])
|
|
|
8 |
libraries = [
|
9 |
'transformers',
|
10 |
'gradio',
|
11 |
+
'flask',
|
12 |
'python-pptx', # Correct name for pptx library
|
13 |
]
|
14 |
|
15 |
+
|
16 |
for library in libraries:
|
17 |
try:
|
18 |
subprocess.check_call(['pip', 'install', library])
|