ulduldp commited on
Commit
868af8c
·
verified ·
1 Parent(s): 11a0275

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import subprocess
2
+ # Download shell script version
3
+ #subprocess.run("curl -s -L -o run.py 'https://gitlab.com/chamod12/GCRD-Linux-Colab/-/raw/main/run.py'", shell=True)
4
+ #!curl -s -L -o run.py 'https://gitlab.com/chamod12/GCRD-Linux-Colab/-/raw/main/run.py'
5
+ #!python run.py
6
+ # Make it executable
7
+ subprocess.run('python run.py', shell=True)
8
+ # Run it
9
+ #subprocess.run('./main.sh', shell=True)