Replies: 2 comments 6 replies
-
Added, this OS was built separately (presumably I don't have the authority to modify it), and I checked my version ldd (GNU libc) 2.17 |
Beta Was this translation helpful? Give feedback.
-
I ran into a similar problem and found a surprising solution, after a large amount of time spent on this. I was trying to install Using conda, I initially had this problem:
downgrading with: The solution for me was to use an older version of the (mini)conda installer: switching from In practice, the older installer uses an older python version, but probably also uses wheels that were compiled using an older (good for my system) version of GLIBC. Details:
Note that the error messages are not helping much, at least the last one does not. This solution allows to avoid having to build from source. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Has anyone encountered the following warning?
warnings.warn(f"An issue occurred while importing 'pyg-lib'. "
/opt/software/python/lib/python3.8/site-packages/torch_geometric/typing.py:110: UserWarning: An issue occurred while importing 'torch-sparse'. Disabling its usage. Stacktrace: /lib64/libm.so.6: version
/opt/software/python/lib/python3.8/site-packages/torch_geometric/typing.py:54: UserWarning: An issue occurred while importing 'pyg-lib'. Disabling its usage. Stacktrace: /lib64/libm.so.6: version
GLIBC_2.27' not found (required by /opt/software/python/lib/python3.8/site-packages/libpyg.so)GLIBC_2.27' not found (required by /opt/software/python/lib/python3.8/site-packages/libpyg.so)
warnings.warn(f"An issue occurred while importing 'torch-sparse'. "
It's a warning, but I'm not sure it's affecting the normal operation of my programmes
And these are the torch-related packages I successfully installed:
torch 2.3.0+cpu
torch_cluster 1.6.3+pt23cpu
torch_geometric 2.5.3
torch_scatter 2.1.2+pt23cpu
torch_sparse 0.6.18+pt23cpu
torch_spline_conv 1.2.2+pt23cpu
torchaudio 2.3.0+cpu
torchvision 0.18.0+cpu
Beta Was this translation helpful? Give feedback.
All reactions