Spaces:
Sleeping
Sleeping
File size: 397 Bytes
2757c63 3a48307 96c7a7d bd40ef8 d6ccbb6 1bccac2 27c2e05 69d8198 27c2e05 69d8198 27c2e05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import os
os.system("chmod +x install.sh")
os.system("chmod +x start.sh")
os.system("chmod +x pre.sh")
os.system("./pre.sh")
os.system("./install.sh")
# os.system("./start.sh")
os.system("gritty --port 7860 --command bash --auto-restart")
# import gradio as gr
# def greet(name):
# return "Hello " + name + "!!"
# demo = gr.Interface(fn=greet, inputs="text", outputs="text")
# demo.launch() |