Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -28,15 +28,15 @@ def main():
|
|
28 |
run_command("pip install opencv-python")
|
29 |
|
30 |
# Clone and install Detectron2
|
31 |
-
run_command("git clone https://github.com/facebookresearch/detectron2
|
32 |
os.chdir("detectron2")
|
33 |
run_command("pip install -e .")
|
34 |
-
run_command("pip install git+https://github.com/cocodataset/panopticapi
|
35 |
-
run_command("pip install git+https://github.com/mcordts/cityscapesScripts
|
36 |
os.chdir("..")
|
37 |
|
38 |
# Clone and setup MaskDINO
|
39 |
-
run_command("git clone https://github.com/facebookresearch/MaskDINO
|
40 |
os.chdir("MaskDINO")
|
41 |
run_command("pip install -r requirements.txt")
|
42 |
|
|
|
28 |
run_command("pip install opencv-python")
|
29 |
|
30 |
# Clone and install Detectron2
|
31 |
+
run_command("git clone https://github.com/facebookresearch/detectron2")
|
32 |
os.chdir("detectron2")
|
33 |
run_command("pip install -e .")
|
34 |
+
run_command("pip install git+https://github.com/cocodataset/panopticapi")
|
35 |
+
run_command("pip install git+https://github.com/mcordts/cityscapesScripts")
|
36 |
os.chdir("..")
|
37 |
|
38 |
# Clone and setup MaskDINO
|
39 |
+
run_command("git clone https://github.com/facebookresearch/MaskDINO")
|
40 |
os.chdir("MaskDINO")
|
41 |
run_command("pip install -r requirements.txt")
|
42 |
|