thatupiso commited on
Commit
0154235
1 Parent(s): ba47fbd

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. .gitattributes +1 -0
  2. 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."