Spaces:
Running
Running
File size: 302 Bytes
48ea831 2b98d59 48ea831 5fe653d |
1 2 3 4 5 6 7 8 9 10 |
import os
GITHUB_TOKEN = os.getenv("GITHUB_TOKEN")
if GITHUB_TOKEN is not None:
try:
cmd = f"pip3 install git+https://{GITHUB_TOKEN}@github.com/SEA-AI/seavision@bugfix/try-catch-fiftyone-import"
os.system(cmd)
except Exception as e:
print(f"Error: {e}")
raise e |