-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version `GLIBC_2.27' not found #989
Comments
did you find a solution to this issue? |
Hi, setting |
I'll close for now, please reopen if you still have problems. |
thanks! that solved the problem, sorry, your first answer got lost in my inbox. |
This fix does not work for the new torch version which requires glibc 2.29. Is there any other way to get torch working without glibc 2.29? Warning message: |
@ykaeber , what's your OS version ? I can try taking a look, but would need more info. |
I am getting the same issue as @ykaeber, same error message when installing torch 0.14.2.
I am working on an HPC system, so I have no control over what GLIBC is installed. The version installed currently is 2.28:
For now I have downgraded to |
Thank for repoting @rdinnager! just to confirm. Did you set |
Hi, I'm trying to install torch in R on a server through install_torch(). It comes with the error:
Error in cpp_lantern_init(file.path(install_path(), "lib")) :
.../R/lib/liblantern.so - /lib64/libm.so.6: version `GLIBC_2.27' not found (required by .../R/lib/./libtorch_cpu.so)
The GLIBC version on the server is 2.17 and I can not update the version. Do you have any idea how to solve the problem? I was thinking to install a previous version of torch by install_torch(version="previous version") but it seems don't work.
I'm able to use Python (3.8) and PyTorch (1.13.1) on that server. Is that possible to force R Torch installation to use the existing python like:
library(reticulate)
use_python("...python3.8/bin/python")
The text was updated successfully, but these errors were encountered: