install.packages("Rmpfr")
之后出现此错误
configure: error: Header file mpfr.h not found; maybe use
--with-mpfr-include=INCLUDE_PATH
ERROR: configuration failed for package ‘Rmpfr’
我在没有成功的终端中输入了建议--with-mpfr-include=INCLUDE_PATH
。
答案 0 :(得分:3)
看这里:https://github.com/cran/Rmpfr
您首先必须安装依赖库。
sudo apt-get install libmpfr-dev
sudo su - -c "R -e \"install.packages('Rmpfr', repos='http://cran.rstudio.com/')\""
从控制台而不是R内安装R-Packages也是一种更好的解决方案,因为计算机上的每个用户都可以访问该软件包。否则,它只会在您的个人图书馆中。