-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.sh
More file actions
53 lines (43 loc) · 1.37 KB
/
install.sh
File metadata and controls
53 lines (43 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# Install PyTorch with CUDA 12.9 support
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu129
# Graph and geometric deep learning libraries
pip install torch_geometric
pip install torch-scatter -f https://data.pyg.org/whl/torch-2.8.0+cu129.html
pip install torch-cluster -f https://data.pyg.org/whl/torch-2.8.0+cu129.html
# Additional PyTorch-related packages
pip install torchmetrics
pip install -U einops
pip install bitsandbytes
# Transformers ecosystem
pip install accelerate
pip install transformers
pip install timm
pip install 'git+https://github.com/katsura-jp/pytorch-cosine-annealing-with-warmup'
# Visualization and logging
pip install tensorboard
# Data handling & utilities
pip install python-box
pip install h5py
pip install pandas
pip install scikit-learn
pip install joblib
# Specialized libraries
pip install -U vector-quantize-pytorch
pip install -U x_transformers
pip install tmtools
pip install jaxtyping
pip install beartype
pip install omegaconf
pip install ndlinear
pip install torch_tb_profiler
pip install tqdm
pip install biopython
pip install graphein
pip install esm
# Graph analytics libraries from NVIDIA
pip install cugraph-cu12 -f https://pypi.nvidia.com
pip install pylibcugraphops-cu12 -f https://pypi.nvidia.com
# Set environment variable
export TOKENIZERS_PARALLELISM=false
echo "Installation completed successfully!"