File size: 403 Bytes
0e3e7cd 1497835 47d21ec 42a6bb3 1497835 47d21ec 72ac302 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import spaces
import sys
import os
os.system(f"git clone https://github.com/Curt-Park/yolo-world-with-efficientvit-sam.git")
cwd0 = os.getcwd()
cwd1 = os.path.join(cwd0, "yolo-world-with-efficientvit-sam")
os.chdir(cwd1)
os.system("make setup")
os.chdir(f"/home/user/app")
# os.system(f"pip install inference[yolo-world]==0.9.13")
# print("install inference-yolo-world")
os.system(f"python app2.py") |