Spaces:
Build error
Build error
Create setup.sh
Browse files
setup.sh
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Install pip and build tools first, before any other dependencies
|
| 4 |
+
python -m pip install --upgrade pip setuptools wheel
|
| 5 |
+
|
| 6 |
+
# Now install the project requirements
|
| 7 |
+
pip install -r requirements.txt
|