如何删除 DLL,又名 "maximal number of DLLs reached..."

How to remove a DLL, aka "maximal number of DLLs reached..."

每当我尝试加载像这样的库时:

library(Seurat)

我收到以下错误消息:

Error: package or namespace load failed for ‘Seurat’ in dyn.load(file, DLLpath = DLLpath, ...):
 unable to load shared object '/mnt/data1/bin/R/NewR/R-3.4.3/library/RcppRoll/libs/RcppRoll.so':
  `maximal number of DLLs reached...

我正在使用我没有管理员权限的服务器,因此增加 D​​LL 的最大数量不是一个选项。

如何删除不需要的 DLL?

我试过了:

R.utils::gcDLLs()

无果。

这应该在 R 版本 > 3.5 中修复

https://github.com/rstudio/rstudio/issues/2375#issuecomment-399136011