File size: 239 Bytes
4c6cca9
 
289b206
 
 
 
6b3eca4
 
 
4c6cca9
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()