Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ os.system('pip uninstall -y soundfile')
|
|
9 |
|
10 |
|
11 |
"""install libsndfile on the linux machine"""
|
12 |
-
proc = subprocess.Popen('apt-get install -y
|
13 |
proc.wait()
|
14 |
|
15 |
|
|
|
9 |
|
10 |
|
11 |
"""install libsndfile on the linux machine"""
|
12 |
+
proc = subprocess.Popen('apt-get install -y libsndfssile1', shell=True, stdin=None, stdout=open(os.devnull,"wb"), stderr=STDOUT, executable="/bin/bash")
|
13 |
proc.wait()
|
14 |
|
15 |
|