Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- install.sh +19 -4
- requirements.txt +0 -1
install.sh
CHANGED
@@ -1,9 +1,24 @@
|
|
1 |
#!/bin/bash
|
2 |
set -e
|
3 |
|
4 |
-
echo "
|
|
|
|
|
|
|
5 |
pip install --upgrade pip
|
6 |
-
pip install --no-cache-dir -r requirements.txt
|
7 |
-
pip install podcastfy
|
8 |
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#!/bin/bash
|
2 |
set -e
|
3 |
|
4 |
+
echo "Starting custom installation script..."
|
5 |
+
|
6 |
+
# Upgrade pip
|
7 |
+
echo "Upgrading pip..."
|
8 |
pip install --upgrade pip
|
|
|
|
|
9 |
|
10 |
+
|
11 |
+
|
12 |
+
# If you have any specific packages that need special handling, install them here
|
13 |
+
# For example:
|
14 |
+
# echo "Installing specific package..."
|
15 |
+
# pip install some-package==1.2.3
|
16 |
+
|
17 |
+
# List installed packages
|
18 |
+
echo "Listing installed packages:"
|
19 |
+
pip list
|
20 |
+
|
21 |
+
echo "Custom installation script completed."
|
22 |
+
|
23 |
+
python -m ensurepip --upgrade
|
24 |
+
python -m pip install --upgrade setuptools
|
requirements.txt
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
setuptools==75.1.0
|
2 |
gradio-client==1.3.0
|
3 |
gradio==4.44.1
|
4 |
podcastfy==0.1.12
|
|
|
|
|
1 |
gradio-client==1.3.0
|
2 |
gradio==4.44.1
|
3 |
podcastfy==0.1.12
|