Spaces:
Runtime error
Runtime error
Simon Stolarczyk
commited on
Commit
•
c62f15c
1
Parent(s):
f19aeec
Try find.
Browse files- .ipynb_checkpoints/app-checkpoint.py +4 -2
- app.py +4 -2
.ipynb_checkpoints/app-checkpoint.py
CHANGED
@@ -30,9 +30,11 @@ print(os.getcwd())
|
|
30 |
# print('-'*10)
|
31 |
|
32 |
# subprocess.run(['/home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
33 |
-
subprocess.run(['cat /home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
34 |
|
35 |
-
subprocess.run(['
|
|
|
|
|
36 |
|
37 |
# subprocess.run(['PATH=$PATH:~/opt/bin'])
|
38 |
# subprocess.run(['PATH=$PATH:~/opt/bin/fluidsynth'])
|
|
|
30 |
# print('-'*10)
|
31 |
|
32 |
# subprocess.run(['/home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
33 |
+
# subprocess.run(['cat /home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
34 |
|
35 |
+
# subprocess.run(['apt-get install fluidsynth'], shell=True)
|
36 |
+
results = subprocess.run(['find / | grep "fluidsynth"'], capture_output=True, shell=True)
|
37 |
+
print(results.stdout)
|
38 |
|
39 |
# subprocess.run(['PATH=$PATH:~/opt/bin'])
|
40 |
# subprocess.run(['PATH=$PATH:~/opt/bin/fluidsynth'])
|
app.py
CHANGED
@@ -30,9 +30,11 @@ print(os.getcwd())
|
|
30 |
# print('-'*10)
|
31 |
|
32 |
# subprocess.run(['/home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
33 |
-
subprocess.run(['cat /home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
34 |
|
35 |
-
subprocess.run(['
|
|
|
|
|
36 |
|
37 |
# subprocess.run(['PATH=$PATH:~/opt/bin'])
|
38 |
# subprocess.run(['PATH=$PATH:~/opt/bin/fluidsynth'])
|
|
|
30 |
# print('-'*10)
|
31 |
|
32 |
# subprocess.run(['/home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
33 |
+
# subprocess.run(['cat /home/user/.local/bin/install_fluidsynth_with_soundfonts_osx.sh'], shell=True)
|
34 |
|
35 |
+
# subprocess.run(['apt-get install fluidsynth'], shell=True)
|
36 |
+
results = subprocess.run(['find / | grep "fluidsynth"'], capture_output=True, shell=True)
|
37 |
+
print(results.stdout)
|
38 |
|
39 |
# subprocess.run(['PATH=$PATH:~/opt/bin'])
|
40 |
# subprocess.run(['PATH=$PATH:~/opt/bin/fluidsynth'])
|