jkorstad commited on
Commit
3ef894a
·
verified ·
1 Parent(s): e3ec5cf

Update unirig_requirements.txt

Browse files
Files changed (1) hide show
  1. unirig_requirements.txt +9 -6
unirig_requirements.txt CHANGED
@@ -1,22 +1,25 @@
1
  # UniRig Dependencies (to be installed into Blender's Python 3.11)
2
 
 
 
 
3
  # PyTorch (Matching main env for simplicity, ensure compatibility with UniRig >=2.3.1)
4
  # Install the version compatible with Python 3.11 and CUDA 12.1
5
  # Example using index-url, adjust if needed
 
 
6
  torch==2.3.1 --index-url https://download.pytorch.org/whl/cu121
7
  torchvision==0.18.1 --index-url https://download.pytorch.org/whl/cu121
8
 
9
  # PyTorch Geometric libraries (for CUDA 12.1, Python 3.11)
10
- # Note the updated URLs for cp311
11
- torch-scatter -f https://data.pyg.org/whl/torch-2.3.1+cu121/torch_scatter-latest+pt23cu121-cp311-cp311-linux_x86_64.html
12
- torch-cluster -f https://data.pyg.org/whl/torch-2.3.1+cu121/torch_cluster-latest+pt23cu121-cp311-cp311-linux_x86_64.html
 
13
 
14
  # Spconv (for CUDA 12.1 - check compatibility with Python 3.11 if issues arise)
15
  spconv-cu121
16
 
17
- # Numpy (UniRig: 1.26.4)
18
- numpy==1.26.4
19
-
20
  # Dependencies from UniRig's official requirements.txt (excluding bpy and flash_attn)
21
  transformers
22
  python-box
 
1
  # UniRig Dependencies (to be installed into Blender's Python 3.11)
2
 
3
+ # Numpy (UniRig: 1.26.4)
4
+ numpy==1.26.4
5
+
6
  # PyTorch (Matching main env for simplicity, ensure compatibility with UniRig >=2.3.1)
7
  # Install the version compatible with Python 3.11 and CUDA 12.1
8
  # Example using index-url, adjust if needed
9
+ # Note: This will be installed *first* by setup_blender.sh, but listing it here ensures
10
+ # pip knows the version constraint when resolving other dependencies later.
11
  torch==2.3.1 --index-url https://download.pytorch.org/whl/cu121
12
  torchvision==0.18.1 --index-url https://download.pytorch.org/whl/cu121
13
 
14
  # PyTorch Geometric libraries (for CUDA 12.1, Python 3.11)
15
+ # Use -f to point pip to the HTML index pages. Pip should find the correct wheels.
16
+ # Make sure these URLs correspond to torch 2.3.1 + cu121
17
+ torch-scatter -f https://data.pyg.org/whl/torch-2.3.1+cu121.html
18
+ torch-cluster -f https://data.pyg.org/whl/torch-2.3.1+cu121.html
19
 
20
  # Spconv (for CUDA 12.1 - check compatibility with Python 3.11 if issues arise)
21
  spconv-cu121
22
 
 
 
 
23
  # Dependencies from UniRig's official requirements.txt (excluding bpy and flash_attn)
24
  transformers
25
  python-box