detection-demo / install_private_repos.py
kevinconka's picture
install deps only if needed
3460b3c
raw
history blame
347 Bytes
import os
GITHUB_TOKEN = os.getenv("GITHUB_TOKEN")
if GITHUB_TOKEN is not None:
try:
cmd = f'pip3 install "seavision[inference] @ git+https://{GITHUB_TOKEN}@github.com/SEA-AI/seavision"'
cmd += ' --upgrade-strategy only-if-needed'
os.system(cmd)
except Exception as e:
print(f"Error: {e}")
raise e