0

我在运行时在 ubuntu 16.04 上安装 geoR 包时遇到问题

>install.packages('geoR', dependencies = TRUE)

我收到以下错误消息

/usr/lib/R/etc/Makeconf:141: recipe for target 'RFoptions.o' failed
make: *** [RFoptions.o] Error 1
ERROR: compilation failed for package ‘RandomFieldsUtils’
* removing ‘/home/luca/R/x86_64-pc-linux-gnu-library/3.2/RandomFieldsUtils’

The downloaded source packages are in
    ‘/tmp/Rtmph5zmhR/downloaded_packages’
Warning message:
In install.packages("RandomFieldsUtils") :
  installation of package ‘RandomFieldsUtils’ had non-zero exit status
> 
> install.packages('geoR', dependencites = TRUE)
Installing package into ‘/home/luca/R/x86_64-pc-linux-gnu-library/3.2’
(as ‘lib’ is unspecified)
also installing the dependencies ‘RandomFieldsUtils’, ‘RandomFields’

Error in download.file(url, destfile, method, mode = "wb", ...) : 
  unused argument (dependencites = TRUE)
Warning in download.packages(pkgs, destdir = tmpd, available = available,  :
  download of package ‘RandomFieldsUtils’ failed
Error in download.file(url, destfile, method, mode = "wb", ...) : 
  unused argument (dependencites = TRUE)
Warning in download.packages(pkgs, destdir = tmpd, available = available,  :
  download of package ‘RandomFields’ failed
Error in download.file(url, destfile, method, mode = "wb", ...) : 
  unused argument (dependencites = TRUE)
Warning in download.packages(pkgs, destdir = tmpd, available = available,  :
  download of package ‘geoR’ failed

在我看来,问题出在 RandomFieldsUtils 包上,而且当我尝试运行时

>install.packages('RandomFieldsUtils')

我犯了同样的错误

/usr/lib/R/etc/Makeconf:141: recipe for target 'RFoptions.o' failed
make: *** [RFoptions.o] Error 1

ERROR: compilation failed for package ‘RandomFieldsUtils’
* removing ‘/home/luca/R/x86_64-pc-linux-gnu-library/3.2/RandomFieldsUtils’

The downloaded source packages are in
    ‘/tmp/Rtmph5zmhR/downloaded_packages’
Warning message:
In install.packages("RandomFieldsUtils") :
  installation of package ‘RandomFieldsUtils’ had non-zero exit status

我对 R 很陌生,并在 R Studio 和 Ubuntu 控制台中都尝试过,两次收到相同的消息。

知道如何解决吗?

提前致谢

4

1 回答 1

1

在玩了一会儿之后,我直接从贡献者的网站下载了 RandomFieldsUtils 的第二个最新版本(即 0.3.16 而不是 0.3.20)并从包中安装它。

将这个答案发布给自己,以防它可以帮助任何人!

于 2017-03-22T14:10:03.610 回答