FailSafe / setup.py
rcrane4's picture
Upload 10 files
7538d69 verified
raw
history blame contribute delete
395 Bytes
"""
FailureGPT — OSF Ti-64 Dataset Inspector
Run this first to install dependencies.
"""
import subprocess, sys
packages = [
"torch",
"torchvision",
"Pillow",
"matplotlib",
"numpy",
"requests",
"osfclient",
"tqdm",
]
for pkg in packages:
subprocess.check_call([sys.executable, "-m", "pip", "install", pkg, "-q"])
print("✅ All dependencies installed.")