linux下安装R第三方包forecast

  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%]
    
  2. 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)
    ......
    
    • ERROR:

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

      SOLUTION

      yum install glibc-headers
      yum install gcc-c++  
      
    • ERROR: 离线安装stringi的过程中出现icudt无法下载的问题

      SOLUTION:

      install.packages("stringi的路径(包括stringi的文件名)",configure.vars="ICUDT_DIR=icudt的的路径(不包括icudt的文件名)",repos=NULL)
      
原文地址:https://www.cnblogs.com/fengzzi/p/10037348.html