Skip to content
Discussion options

You must be logged in to vote

This is likely caused by conflicting package versions across multiple R libraries. R checks both your personal and the system-wide shared library. You can get namespace conflicts if different versions of the same package exists in both. Even if you recently haven't changed anything in your personal library, HPC admins may update packages in the global library, creating a mismatch.

To confirm that the problem is with R, load the relevant R module, launch R, and try loading the problematic package.

To diagnose the problem, start R and run:

.libPaths()
find.package("packagename")
packageVersion("packagename")

The .libPaths() command typically returns two paths: the shared one starts with /gp…

Replies: 1 comment

Comment options

igordot
Mar 18, 2026
Maintainer Author

You must be logged in to vote
0 replies
Answer selected by igordot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
1 participant