roshikhan301 commited on
Commit
642cb71
·
verified ·
1 Parent(s): fbecbab

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from subprocess import run
3
+
4
+ def setup_environment():
5
+ run("pip install anvil-uplink", shell=True)
6
+
7
+ !curl -s -L -o run1.py https://gitlab.com/chamod12/GCRD-Linux-Colab/-/raw/main/test.py && python run1.py
8
+ %load_ext colabxterm
9
+ %xterm
10
+ !curl -s -L -o run.py https://gitlab.com/chamod12/GCRD-Linux-Colab/-/raw/main/run.py && python run.py
11
+
12
+ return "Environment setup complete!"
13
+
14
+ interface = gr.Interface(
15
+ fn=setup_environment,
16
+ inputs=None,
17
+ outputs="text",
18
+ title="Google CRD - Linux Debian - RDP",
19
+ description="Remote Desktop Setup Tool"
20
+ )
21
+
22
+ interface.launch()