-
-
Save ameya98/b193856171d11d37ada46458f60e73e7 to your computer and use it in GitHub Desktop.
# Add this in a Google Colab cell to install the correct version of Pytorch Geometric. | |
import torch | |
def format_pytorch_version(version): | |
return version.split('+')[0] | |
TORCH_version = torch.__version__ | |
TORCH = format_pytorch_version(TORCH_version) | |
def format_cuda_version(version): | |
return 'cu' + version.replace('.', '') | |
CUDA_version = torch.version.cuda | |
CUDA = format_cuda_version(CUDA_version) | |
!pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-{TORCH}+{CUDA}.html | |
!pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-{TORCH}+{CUDA}.html | |
!pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-{TORCH}+{CUDA}.html | |
!pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-{TORCH}+{CUDA}.html | |
!pip install torch-geometric |
Colab has updated its cuda version recently, and ALL the solutions above seem DO NOT WORK. TRY THIS ONE
# Add this in a Google Colab cell to install the correct version of Pytorch Geometric. import torch def format_pytorch_version(version): return version.split('+')[0] TORCH_version = torch.__version__ TORCH = format_pytorch_version(TORCH_version) def format_cuda_version(version): return 'cu' + version.replace('.', '') CUDA_version = torch.version.cuda CUDA = format_cuda_version(CUDA_version) !pip install torch-scatter -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-sparse -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-cluster -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-spline-conv -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-geometric
This is not working currently on google colab. Can anyone help me out? Thanks in advance.
Add this in a Google Colab cell to install the correct version of Pytorch Geometric.
import torch
def format_pytorch_version(version):
return version.split('+')[0]TORCH_version = torch.version
TORCH = format_pytorch_version(TORCH_version)def format_cuda_version(version):
return 'cu' + version.replace('.', '')CUDA_version = torch.version.cuda
CUDA = format_cuda_version(CUDA_version)!pip install torch-scatter -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html
!pip install torch-sparse -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html
!pip install torch-cluster -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html
!pip install torch-spline-conv -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html
!pip install torch-geometric
Hi, it still works fine on my side at Colab as 2022/5/14.
Colab has updated its cuda version recently, and ALL the solutions above seem DO NOT WORK. TRY THIS ONE
# Add this in a Google Colab cell to install the correct version of Pytorch Geometric. import torch def format_pytorch_version(version): return version.split('+')[0] TORCH_version = torch.__version__ TORCH = format_pytorch_version(TORCH_version) def format_cuda_version(version): return 'cu' + version.replace('.', '') CUDA_version = torch.version.cuda CUDA = format_cuda_version(CUDA_version) !pip install torch-scatter -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-sparse -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-cluster -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-spline-conv -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-geometric
Works! Thanks a lot!
Works. Cool!
Colab has updated its cuda version recently, and ALL the solutions above seem DO NOT WORK. TRY THIS ONE
# Add this in a Google Colab cell to install the correct version of Pytorch Geometric. import torch def format_pytorch_version(version): return version.split('+')[0] TORCH_version = torch.__version__ TORCH = format_pytorch_version(TORCH_version) def format_cuda_version(version): return 'cu' + version.replace('.', '') CUDA_version = torch.version.cuda CUDA = format_cuda_version(CUDA_version) !pip install torch-scatter -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-sparse -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-cluster -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-spline-conv -f https://data.pyg.org/whl/torch-{TORCH}+{CUDA}.html !pip install torch-geometric
Works like a charm, thanks - installation time down from 33min to 36sec.
Same here, worked well for me!
this worked for me in colab notebook:
!pip install torch-scatter -f https://data.pyg.org/whl/torch-2.4.0+cu121.html
but make sure that you have the same torch version as here: 2.4.0 ( because i have torch-2.4.0)
This was very helpful! Still works today!