Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,12 @@ from io import BytesIO
|
|
12 |
import pandas as pd
|
13 |
import numpy as np
|
14 |
import soundfile as sf
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
# DataFrame with information about the Paintings as image url, Title, description , stroy
|
18 |
|
|
|
12 |
import pandas as pd
|
13 |
import numpy as np
|
14 |
import soundfile as sf
|
15 |
+
import os
|
16 |
+
import subprocess
|
17 |
+
|
18 |
+
# Run the setup script to install espeak-ng
|
19 |
+
subprocess.run(['bash', 'setup.sh'], check=True)
|
20 |
+
|
21 |
|
22 |
# DataFrame with information about the Paintings as image url, Title, description , stroy
|
23 |
|