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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -33,10 +33,11 @@ def main():
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
 
 
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
+ run_command("pip install --upgrade pip")
37
  os.chdir("..")
38
 
39
  # Clone and setup MaskDINO
40
+ run_command("git clone https://github.com/IDEA-Research/MaskDINO.git")
41
  os.chdir("MaskDINO")
42
  run_command("pip install -r requirements.txt")
43