Sa-m commited on
Commit
aee6913
1 Parent(s): 955c817

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
  import os
3
 
4
- os.system('git clone https://github.com/WongKinYiu/yolov7.git')
5
-
6
  def detect(inp):
7
  return inp
8
 
 
1
  import gradio as gr
2
  import os
3
 
4
+ os.system('git clone https://github.com/WongKinYiu/yolov7.git .')
5
+ os.system('pip install -qr ./yolov7/requirements.txt')
6
  def detect(inp):
7
  return inp
8