File size: 395 Bytes
7538d69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
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.")