尝试在与头文件相关的 R 中安装 Rmpfr 时出错 mpfr.h
Error when trying to install Rmpfr in R related to the header file mpfr.h
我使用 Ubuntu 14.04 并且我有 R 版本 3.1.2。当我尝试安装 Rmpfr
软件包时,出现此错误
configure: error: Header file mpfr.h not found; maybe use --with-mpfr-include=INCLUDE_PATH
我是 Linux 的新手,所以我不知道如何解决这个问题。
您应该安装 libmpfr-dev:
sudo apt-get install libmpfr-dev
(来自 @user3710546 的第一个高度评价的评论的回答)
如果使用 Amazon Linux、CentOS 或与 yum 捆绑在一起的任何其他软件,请执行以下操作:
sudo yum install mpfr-devel
我使用 Ubuntu 14.04 并且我有 R 版本 3.1.2。当我尝试安装 Rmpfr
软件包时,出现此错误
configure: error: Header file mpfr.h not found; maybe use --with-mpfr-include=INCLUDE_PATH
我是 Linux 的新手,所以我不知道如何解决这个问题。
您应该安装 libmpfr-dev:
sudo apt-get install libmpfr-dev
(来自 @user3710546 的第一个高度评价的评论的回答)
如果使用 Amazon Linux、CentOS 或与 yum 捆绑在一起的任何其他软件,请执行以下操作:
sudo yum install mpfr-devel