R语言 加载库失败:找不到指定的模块

oxalkeyp  于 2022-12-25  发布在  其他
关注(0)|答案(1)|浏览(663)

我该怎么补救?
启动期间-

Warning message:
package ‘stats’ in options("defaultPackages") was not found 
Error in inDL(x, as.logical(local), as.logical(now), ...) : 
  unable to load shared object 'C:/Program Files/R/R-4.2.1/library/stats/libs/x64/stats.dll':
  LoadLibrary failure:  The specified module could not be found.
In addition: Warning message:
R graphics engine version 15 is not supported by this version of RStudio. The Plots tab will be disabled until a newer version of RStudio is installed.

这是我的错

z0qdvdin

z0qdvdin1#

这是一个路径和权限的问题。我已经解决了这个问题的dll丢失如下:
1.将R和RStudio安装更改为我的管理员用户

  • this link中的@kevinushey之后,我注意到我的空Sys.which(“stats.dll”),我在Windows中将以下所有路径添加到我的PATH中(但最后两个似乎有区别):
  • C:\程序文件\R\R-4.2.1\bin\x64;
  • C:\程序文件\R\R-4.2.1\bin\i386;
  • C:\程序\程序\文件\文件
  • C:\用户\用户\应用程序数据\本地\程序\R\R-4.2.1\库\r Java\jri;
  • C:\程序文件\R\R-4.2.1\库\统计;
  • C:\用户\用户\应用程序数据\本地\R\bin \x64;
  • C:\用户\用户\应用程序数据\本地\R\库\统计信息\库\x64;
  • 已将“Rprofile.site”从本期C:\Users\user\AppData\Local\Programs\R\R-4.2.1\etc中@lrasmus后面的以下文件夹中移出

我在运行R扩展时遇到了这个问题,我在R中运行nrlx包(连接R和NetLogo)。我已经在R .NET问题页面上发布了这个答案。我希望这能有所帮助。

相关问题