如何在Ubuntu 18.04上安装Rmpfr?

时间:2019-04-27 08:37:30

标签: r linux mpfr

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

1 个答案:

答案 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也是一种更好的解决方案,因为计算机上的每个用户都可以访问该软件包。否则,它只会在您的个人图书馆中。