2015-11-17 58 views
1

請幫我在R中安裝Rmpfr包 結果是: 安裝包'Rmpfr'具有非零退出狀態,我無法安裝它。安裝包'Rmpfr'具有非零退出狀態

來自R控制檯的代碼下面貼:

* installing *source* package ‘Rmpfr’ ... 
** package ‘Rmpfr’ successfully unpacked and MD5 sums checked 
checking for gcc... gcc -std=gnu99 
checking whether the C compiler works... yes 
checking for C compiler default output file name... a.out 
checking for suffix of executables... 
checking whether we are cross compiling... no 
checking for suffix of object files... o 
checking whether we are using the GNU C compiler... yes 
checking whether gcc -std=gnu99 accepts -g... yes 
checking for gcc -std=gnu99 option to accept ISO C89... none needed 
checking how to run the C preprocessor... gcc -std=gnu99 -E 
checking for grep that handles long lines and -e... /bin/grep 
checking for egrep... /bin/grep -E 
checking for ANSI C header files... yes 
checking for sys/types.h... yes 
checking for sys/stat.h... yes 
checking for stdlib.h... yes 
checking for string.h... yes 
checking for memory.h... yes 
checking for strings.h... yes 
checking for inttypes.h... yes 
checking for stdint.h... yes 
checking for unistd.h... yes 
checking mpfr.h usability... no 
checking mpfr.h presence... no 
checking for mpfr.h... no 
configure: error: Header file mpfr.h not found; maybe use --with-mpfr-include=INCLUDE_PATH 
ERROR: configuration failed for package ‘Rmpfr’ 
* removing ‘/home/fbn/R/x86_64-pc-linux-gnu-library/3.2/Rmpfr’ 
Warning in install.packages : 
    installation of package ‘Rmpfr’ had non-zero exit status 

謝謝!

+1

安裝 'Rmpfr'?你爲什麼不在互聯網上搜索'mpfr.h'? –

+2

您是否安裝了[mpfr庫](http://www.mpfr.org/)? [包的描述](https://cran.r-project.org/web/packages/Rmpfr/Rmpfr.pdf)陳述:'SystemRequirementsNote MPFR(MP浮點可靠庫, http:// mpfr。 org /)和GMP(GNU Multiple Precision library, http://gmplib.org/)', – RHertel

+0

謝謝RHertel你的迴應,我在基本操作系統中使用R - libmpfr4和libgmp-dev和libmpc3按照報告安裝來自突觸包管理器 –

回答

2

嘗試從終端中安裝libmpfr-dev的:

sudo apt-get install libmpfr-dev 

再說你爲什麼不讀錯誤消息來自R

相關問題