Manamama's picture
Update app.py
289b206
raw
history blame
239 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()