Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -43,7 +43,7 @@ else:
|
|
| 43 |
print("Error executing command:")
|
| 44 |
print(cmd4.stderr)
|
| 45 |
sleep(5)
|
| 46 |
-
cmd5 = subprocess.run("apt-get install -y libfontconfig1", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
| 47 |
if cmd5.returncode == 0:
|
| 48 |
print("Command output:")
|
| 49 |
print(cmd5.stdout)
|
|
|
|
| 43 |
print("Error executing command:")
|
| 44 |
print(cmd4.stderr)
|
| 45 |
sleep(5)
|
| 46 |
+
cmd5 = subprocess.run("apt-get install -y libfontconfig1 libnss3", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
| 47 |
if cmd5.returncode == 0:
|
| 48 |
print("Command output:")
|
| 49 |
print(cmd5.stdout)
|