Spaces:
Sleeping
Sleeping
Create setup.sh
Browse files
setup.sh
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Install HumAware-VAD if not already installed
|
| 3 |
+
if ! pip show humaware-vad > /dev/null 2>&1; then
|
| 4 |
+
echo "Installing HumAware-VAD..."
|
| 5 |
+
pip install humaware-vad
|
| 6 |
+
fi
|
| 7 |
+
|
| 8 |
+
# Run the application
|
| 9 |
+
python app.py
|