ghadaAlmuaikel commited on
Commit
ac393bc
1 Parent(s): d2d33e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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
- !bash setup.sh
 
 
 
 
 
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