Spaces:
Build error
Build error
Commit
·
f3a9a71
1
Parent(s):
d9d8d14
Remove sudo from os.system
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import os
|
2 |
|
3 |
os.system("python3 -m pip install -e .")
|
4 |
-
os.system("
|
5 |
-
os.system("
|
6 |
-
os.system("
|
7 |
print("Locate path to musescore")
|
8 |
os.system("whereis musescore")
|
9 |
|
|
|
1 |
import os
|
2 |
|
3 |
os.system("python3 -m pip install -e .")
|
4 |
+
os.system("add-apt-repository ppa:mscore-ubuntu/mscore3-stable")
|
5 |
+
os.system("apt-get update")
|
6 |
+
os.system("apt install musescore3")
|
7 |
print("Locate path to musescore")
|
8 |
os.system("whereis musescore")
|
9 |
|