gpt4 book ai didi

r - inDL(x, as.logical(local), as.logical(now), ...) 错误 : unable to load shared object

转载 作者:行者123 更新时间:2023-12-04 01:52:46 27 4
gpt4 key购买 nike

我在尝试附加包 tidyselect 和尝试调用 tidyselect::any_function 时遇到此错误。

错误发生在 Rstudio 或类似的命令行中,在 RStudio 中它会在我输入时立即触发: tidyselect:: ,虽然?tidyselect:: 工作正常,我可以调用 ?tidyselect::any_function 的帮助。

这也有效:

packageVersion("tidyselect") # [1] ‘0.2.4

它曾经工作,我不明白发生了什么变化,我只知道包 rjava 已经安装,管理员可能也改变了一些东西。

首先弹出窗口说:

The procedure entry point R_ContinueUnwind could not be located in the dynamic link library R.dll

然后在控制台中显示错误:

Error in inDL(x, as.logical(local), as.logical(now), ...) :

unable to load shared object '//edited_UNC_path.com/edited_path/tidyselect/libs/x64/tidyselect.dll':

LoadLibrary failure: The specified procedure could not be found.

dll 文件存在:

file.exists('//edited_UNC_path.com/edited_path/tidyselect/libs/x64/tidyselect.dll') # [1] TRUE

配置:

sessionInfo()
R version 3.3.1 (2016-06-21)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1

locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252

attached base packages:
[1] stats graphics grDevices utils datasets methods base

loaded via a namespace (and not attached):
[1] tools_3.3.1

知道如何解决这个问题吗?

最佳答案

我不知道为什么会发生此事件,因为我目前正面临同样的问题。无论如何,我可以解释您的解决方案。

32 位与 64 位

您的系统是 64 位的,如您的 sessionInfo() 所示。 i386 架构适用于较旧的 32 位系统(它们只能处理有限数量的内存,因为它们使用 32 位内存地址,而今天的 64 位系统实际上是无限的)。

R 中发生了什么

R 中的经典安装是“multiarch”,用于多架构,即 32 位和 64 位。在 64 位系统中构建 32 位软件没有问题。但是,您可能没有为这两种体系结构安装所有依赖项(例如 C++ 库)。您的 32 位安装显然有问题。然后使用 INSTALL_opts="--no-multiarch" 安装包只会安装 64 位版本(你需要的那个),没有问题。

关于r - inDL(x, as.logical(local), as.logical(now), ...) 错误 : unable to load shared object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52150491/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com