Ubuntu环境R程序包安装返回非零值的一个解决办法

 做回归分析的作业,需要用到car程序包,然而在Rstudio中一直没能成功安装,最后在StackOverFlow中看到一种解决方法,成功解决问题。

 原问题是安装ncdf4程序包,将它换成相应的程序包即可。如果有其他解决方法,欢迎补充。


'ncdf4' require system libraries be installed, so you have a couple of options:

      1. Install the pre-built 'ncdf4' package from the repositories:


    

sudo apt-get install r-cran-ncdf4

This will automatically pull in the required system dependencies.

2. Or, you can install the system dependencies explicitly:

sudo apt-get install netcdf-bin

Then, install the R package:

install.packages('ncdf4')

原问题网址

你可能感兴趣的:(R语言)