简体   繁体   中英

How to install Rmpfr on Ubuntu 18.04?

After install.packages("Rmpfr") I'm getting this error

configure: error: Header file mpfr.h not found; maybe use
--with-mpfr-include=INCLUDE_PATH
ERROR: configuration failed for package ‘Rmpfr’

I typed the suggestion --with-mpfr-include=INCLUDE_PATH into the terminal w/o success.

Look here: https://github.com/cran/Rmpfr

You first have to install the dependend libraries.

sudo apt-get install libmpfr-dev
sudo su - -c "R -e \"install.packages('Rmpfr', repos='http://cran.rstudio.com/')\""

It is also a better solution to install the R-Packages from the console, not inside R, since every user on the machine will have access to the package then. Otherwise it will just be in your personal library.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM