Spaces:
Sleeping
Sleeping
Update install_private_repos.py
Browse files- install_private_repos.py +1 -1
install_private_repos.py
CHANGED
|
@@ -3,7 +3,7 @@ import os
|
|
| 3 |
GITHUB_TOKEN = os.getenv("GITHUB_TOKEN")
|
| 4 |
if GITHUB_TOKEN is not None:
|
| 5 |
try:
|
| 6 |
-
cmd = f'pip3 install "seavision
|
| 7 |
os.system(cmd)
|
| 8 |
except Exception as e:
|
| 9 |
print(f"Error: {e}")
|
|
|
|
| 3 |
GITHUB_TOKEN = os.getenv("GITHUB_TOKEN")
|
| 4 |
if GITHUB_TOKEN is not None:
|
| 5 |
try:
|
| 6 |
+
cmd = f'pip3 install "seavision @ git+https://{GITHUB_TOKEN}@github.com/SEA-AI/seavision"'
|
| 7 |
os.system(cmd)
|
| 8 |
except Exception as e:
|
| 9 |
print(f"Error: {e}")
|