Manamama's picture
Update app.py
f5e84bd
raw
history blame
241 Bytes
import gradio as gr
import os
myCmd = os.popen('ls -la').read()
print(myCmd)
#!whoami
#!apt install neofetch
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()