Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,8 @@ import gradio as gr
|
|
2 |
import os
|
3 |
import sys
|
4 |
#Installation of libraries
|
|
|
|
|
5 |
EC2_INSTANCE = False
|
6 |
if EC2_INSTANCE : os.system('cd scripts && sh install.sh')
|
7 |
os.system('python installation.py')
|
|
|
2 |
import os
|
3 |
import sys
|
4 |
#Installation of libraries
|
5 |
+
# Run pip install command using os.system
|
6 |
+
os.system('pip install ipython')
|
7 |
EC2_INSTANCE = False
|
8 |
if EC2_INSTANCE : os.system('cd scripts && sh install.sh')
|
9 |
os.system('python installation.py')
|