ZhengPeng7 commited on
Commit
b416927
·
1 Parent(s): 7febe9c

Add packages installation.

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -1,4 +1,11 @@
1
  import os
 
 
 
 
 
 
 
2
  from glob import glob
3
  import cv2
4
  import numpy as np
 
1
  import os
2
+
3
+
4
+ os.system('pip3 install torch==1.13.1')
5
+ os.system('pip3 install torchvision==0.14.1')
6
+ os.system('pip3 install opencv-python')
7
+
8
+
9
  from glob import glob
10
  import cv2
11
  import numpy as np