Installation of package ‘forecast’ had non-zero exit status

后端 未结 2 770
野性不改
野性不改 2021-01-20 02:07

With R version 3.2.3 (2015-12-10) on centOS I am trying to install.packages(\'forecast\')

I get this:

i

2条回答
  •  [愿得一人]
    2021-01-20 02:41

    Install devtools. Most of the time the problem in installing R packages is that these tools are not there. Once this is installed, the zero exit error goes away.

    install.packages('devtools')
    

    https://www.digitalocean.com/community/tutorials/how-to-install-r-packages-using-devtools-on-ubuntu-16-04

提交回复
热议问题