Spaces:
Build error
Build error
Update build.sh
Browse files
build.sh
CHANGED
|
@@ -1,3 +1,8 @@
|
|
| 1 |
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
| 2 |
pip install --no-cache-dir Cython
|
|
|
|
|
|
|
| 3 |
pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 1 |
#!/bin/bash
|
| 2 |
+
set -e
|
| 3 |
+
|
| 4 |
+
# First, install Cython
|
| 5 |
pip install --no-cache-dir Cython
|
| 6 |
+
|
| 7 |
+
# Then install the rest of your requirements
|
| 8 |
pip install --no-cache-dir -r requirements.txt
|