Update app.py
Browse files
app.py
CHANGED
|
@@ -18,13 +18,22 @@ def setup():
|
|
| 18 |
print('PWD::', r0.stdout)
|
| 19 |
r1 = subprocess.run(["wget", "https://github.com/google/REAPER/archive/refs/heads/master.zip"], capture_output=True, text=True)
|
| 20 |
print(r1.stdout)
|
| 21 |
-
r2 = subprocess.run(["
|
| 22 |
-
print(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
|
| 25 |
-
print('about to setup
|
| 26 |
setup()
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
def f1():
|
| 29 |
fig = plt.figure(figsize=(10,4))
|
| 30 |
plt.axline((0,0),slope=1,color="darkgray")
|
|
|
|
| 18 |
print('PWD::', r0.stdout)
|
| 19 |
r1 = subprocess.run(["wget", "https://github.com/google/REAPER/archive/refs/heads/master.zip"], capture_output=True, text=True)
|
| 20 |
print(r1.stdout)
|
| 21 |
+
r2 = subprocess.run(["unzip", "./master.zip"], capture_output=True, text=True)
|
| 22 |
+
print(r2.stdout)
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
r9 = subprocess.run(["ls", "-la"], capture_output=True, text=True)
|
| 27 |
+
print('LS::', r9.stdout)
|
| 28 |
|
| 29 |
|
| 30 |
+
print('about to setup')
|
| 31 |
setup()
|
| 32 |
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
def f1():
|
| 38 |
fig = plt.figure(figsize=(10,4))
|
| 39 |
plt.axline((0,0),slope=1,color="darkgray")
|