1. 程式人生 > >linux下安裝R第三方包forecast

linux下安裝R第三方包forecast

oca Opens ant var ESS pack length headers autoconf

  1. ERROR:
[root@localhost soft]# R CMD INSTALL curl_3.1.tar.gz 
WARNING: ignoring environment value of R_HOME
* installing to library ‘/usr/local/R3.2.2/lib64/R/library’
* installing *source* package ‘curl’ ...
** package ‘curl’ successfully unpacked and MD5 sums checked
Package libcurl was not found in the pkg-config search path.
Perhaps you should add the directory containing `libcurl.pc‘
to the PKG_CONFIG_PATH environment variable
No package ‘libcurl‘ found
Package libcurl was not found in the pkg-config search path.
Perhaps you should add the directory containing `libcurl.pc‘
to the PKG_CONFIG_PATH environment variable
No package ‘libcurl‘ found
Using PKG_CFLAGS=
Using PKG_LIBS=-lcurl
------------------------- ANTICONF ERROR ---------------------------
Configuration failed because libcurl was not found. Try installing:
 * deb: libcurl4-openssl-dev (Debian, Ubuntu, etc)
 * rpm: libcurl-devel (Fedora, CentOS, RHEL)
 * csw: libcurl_dev (Solaris)
If libcurl is already installed, check that ‘pkg-config‘ is in your
PATH and PKG_CONFIG_PATH contains a libcurl.pc file. If pkg-config
is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
R CMD INSTALL --configure-vars=‘INCLUDE_DIR=... LIB_DIR=...‘
--------------------------------------------------------------------
ERROR: configuration failed for package ‘curl’
* removing ‘/usr/local/R3.2.2/lib64/R/library/curl’

SOLUTION:

[root@localhost Packages]# rpm -ivh libcurl-devel-7.19.7-37.el6_4.x86_64.rpm libidn-devel-1.18-2.el6.x86_64.rpm automake-1.11.1-4.el6.noarch.rpm autoconf-2.63-5.1.el6.noarch.rpm 
warning: libcurl-devel-7.19.7-37.el6_4.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                ########################################### [100%]
   1:autoconf               ########################################### [ 25%]
   2:automake               ########################################### [ 50%]
   3:libidn-devel           ########################################### [ 75%]
   4:libcurl-devel          ########################################### [100%]
  1. ERROR:
[root@localhost soft]# R CMD INSTALL stringi_1.1.7.tar.gz 
WARNING: ignoring environment value of R_HOME
* installing to library ‘/usr/local/R3.2.2/lib64/R/library’
* installing *source* package ‘stringi’ ...
** package ‘stringi’ successfully unpacked and MD5 sums checked
......
output path: icu55/data/icudt55l.zip
Error in download.file(paste(href, fname, sep = ""), icudtzipfname, mode = "wb"): unsupported URL scheme

trying URL ‘http://www.mini.pw.edu.pl/~gagolews/stringi/icudt55l.zip‘
Content type ‘application/zip‘ length 10176327 bytes (9.7 MB)
......

2.1 ERROR:

configure: error: C++ preprocessor “/lib/cpp” fails sanity 

SOLUTION

yum install glibc-headers
yum install gcc-c++ 

2.2 ERROR: 離線安裝stringi的過程中出現icudt無法下載的問題

SOLUTION:

install.packages("stringi的路徑(包括stringi的文件名)",configure.vars="ICUDT_DIR=icudt的的路徑(不包括icudt的文件名)",repos=NULL)

linux下安裝R第三方包forecast