我正在尝试使用“ R CMD INSTALL Rpkg
”在 Windows 10 上安装 R 包,但出现以下错误:
C:/rtools40/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lgsl
C:/rtools40/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.3.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lgslcblas
collect2.exe: error: ld returned 1 exit status
no DLL was created
我安装了 R in C:\R_soft\R\R-4.0.4
, RStudio inC:\R_soft\RStudio
和 Rtools in C:\rtools40
。gsl 库的位置是C:\R_soft\R\local323
. 我参考了https://cran.r-project.org/web/packages/dynr/vignettes/InstallationForUsers.pdf来安装 gsl 并设置环境路径。我要安装的软件包是用 C++ 编写的。
> Sys.which("make")
"C:\\rtools40\\usr\\bin\\make.exe"
> Sys.which("gcc")
"C:\\rtools40\\mingw64\\bin\\gcc.exe"
我还是 R 语言的新手。任何帮助将不胜感激。