Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- install.sh +9 -0
.gitattributes
CHANGED
@@ -1 +1,2 @@
|
|
1 |
*.ipynb linguist-vendored
|
|
|
|
1 |
*.ipynb linguist-vendored
|
2 |
+
*.sh text eol=lf
|
install.sh
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
set -e
|
3 |
+
|
4 |
+
echo "Installing dependencies..."
|
5 |
+
pip install --upgrade pip
|
6 |
+
pip install --no-cache-dir -r requirements.txt
|
7 |
+
pip install podcastfy
|
8 |
+
|
9 |
+
echo "Installation complete."
|