Spaces:
Running
Running
try to install package on editable mode
Browse files- requirements.txt +4 -0
- setup.sh +3 -4
requirements.txt
CHANGED
@@ -11,3 +11,7 @@ opencv-python==4.9.0.80
|
|
11 |
gdown
|
12 |
streamlit_js_eval
|
13 |
psutil
|
|
|
|
|
|
|
|
|
|
11 |
gdown
|
12 |
streamlit_js_eval
|
13 |
psutil
|
14 |
+
# Run the setup script
|
15 |
+
!bash ./setup.sh
|
16 |
+
# Install the package in editable mode
|
17 |
+
-e ./Streamlit-Image-Annotation
|
setup.sh
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
#!/bin/bash
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
cd ..
|
|
|
1 |
#!/bin/bash
|
2 |
+
|
3 |
+
# Unzip the package
|
4 |
+
unzip -o Streamlit-Image-Annotation.zip -d Streamlit-Image-Annotation
|
|