Ayushnangia commited on
Commit
98af7b5
·
verified ·
1 Parent(s): e4bb47d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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.git")
32
  os.chdir("detectron2")
33
  run_command("pip install -e .")
34
- run_command("pip install git+https://github.com/cocodataset/panopticapi.git")
35
- run_command("pip install git+https://github.com/mcordts/cityscapesScripts.git")
36
  os.chdir("..")
37
 
38
  # Clone and setup MaskDINO
39
- run_command("git clone https://github.com/facebookresearch/MaskDINO.git")
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