No, I have a different problem, this is the error:
################################################################################
WARNING!
The 'datapipes', 'dataloader2' modules are deprecated and will be removed in a
future torchdata release! Please see https://github.com/pytorch/data/issues/1196
to learn more and leave feedback.
################################################################################
deprecation_warning()
Traceback (most recent call last):
File "/var/task/evaluate_model.py", line 10, in <module>
import dgl
File "/var/task/dgl/__init__.py", line 16, in <module>
from . import (
File "/var/task/dgl/dataloading/__init__.py", line 13, in <module>
from .dataloader import *
File "/var/task/dgl/dataloading/dataloader.py", line 27, in <module>
from ..distributed import DistGraph
File "/var/task/dgl/distributed/__init__.py", line 5, in <module>
from .dist_graph import DistGraph, DistGraphServer, edge_split, node_split
File "/var/task/dgl/distributed/dist_graph.py", line 11, in <module>
from .. import backend as F, graphbolt as gb, heterograph_index
File "/var/task/dgl/graphbolt/__init__.py", line 55, in <module>
load_graphbolt()
File "/var/task/dgl/graphbolt/__init__.py", line 45, in load_graphbolt
raise FileNotFoundError(
FileNotFoundError: Cannot find DGL C++ graphbolt library at /var/task/dgl/graphbolt/libgraphbolt_pytorch_2.3.0.so
Looking at the libraries I can see that on the image is installed graphbolt up to pythorch 2.2, that’s the reason why I was using an earlier version.