Julian Bilcke commited on
Commit
5f0ab61
Β·
1 Parent(s): 9ebdc51

iterating..

Browse files
.claude/settings.local.json CHANGED
@@ -6,7 +6,8 @@
6
  "Bash(tree:*)",
7
  "Bash(HOME=/tmp/test_home bash -c:*)",
8
  "Bash(chmod:*)",
9
- "WebSearch"
 
10
  ],
11
  "deny": [],
12
  "ask": []
 
6
  "Bash(tree:*)",
7
  "Bash(HOME=/tmp/test_home bash -c:*)",
8
  "Bash(chmod:*)",
9
+ "WebSearch",
10
+ "WebFetch(domain:raw.githubusercontent.com)"
11
  ],
12
  "deny": [],
13
  "ask": []
samples/opentrack/setup.sh CHANGED
@@ -17,31 +17,20 @@ else
17
  echo "βœ“ OpenTrack repository already exists"
18
  fi
19
 
20
- # Install PyTorch (CPU version for compatibility)
 
21
  echo ""
22
- echo "πŸ”₯ Installing PyTorch..."
23
  pip install --no-cache-dir \
24
- torch==2.5.1 \
25
- torchvision==0.20.1 \
26
- torchaudio==2.5.1 \
27
- --index-url https://download.pytorch.org/whl/cpu
28
- echo "βœ“ PyTorch installed"
29
-
30
- # Install OpenTrack requirements
31
- echo ""
32
- echo "πŸ“‹ Installing OpenTrack requirements..."
33
- if [ -f "$OPENTRACK_DIR/requirements.txt" ]; then
34
- pip install --no-cache-dir -r "$OPENTRACK_DIR/requirements.txt"
35
- echo "βœ“ OpenTrack requirements installed"
36
- else
37
- echo "⚠️ Warning: requirements.txt not found in OpenTrack repo"
38
- fi
39
-
40
- # Install additional packages for video handling
41
- echo ""
42
- echo "🎬 Installing video handling packages..."
43
- pip install --no-cache-dir imageio imageio-ffmpeg
44
- echo "βœ“ Video packages installed"
45
 
46
  echo ""
47
  echo "=========================================="
 
17
  echo "βœ“ OpenTrack repository already exists"
18
  fi
19
 
20
+ # Install OpenTrack-specific requirements (most are already in main requirements.txt)
21
+ # Main requirements.txt already has: jax[cuda12], mujoco, brax, playground, mediapy
22
  echo ""
23
+ echo "πŸ“‹ Installing additional OpenTrack dependencies..."
24
  pip install --no-cache-dir \
25
+ tyro \
26
+ opencv-python \
27
+ wandb \
28
+ jaxopt \
29
+ flax \
30
+ absl-py \
31
+ joblib \
32
+ imageio[ffmpeg]
33
+ echo "βœ“ OpenTrack dependencies installed"
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  echo ""
36
  echo "=========================================="