zoukankan      html  css  js  c++  java
  • R 语言安装问题集锦

    R安装问题
    R CMD INSTALL -l /data1/jhh/envirment/R/R_lib /data1/jhh/software/qvalue_2.10.0.tar.gz


    问题1 :
    configure: error: --with-x=yes (default) and X11 headers/libs are not available

    解决方法:
    apt-get install libxt-dev


    运行过程中又遇到了。。。

    问题2 : configure: error: libcurl >= 7.22.0 library and headers are required with support for https

    解决方法:
    下载curl进行安装,出现了问题,curl 没有https

    ###################

    apt-get install libssl-dev

    apt-get install git g++ make binutils autoconf automake autotools-dev libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev libjemalloc-dev cython python3-dev python-setuptools

    ##################

    #编译安装nghttp2
    git clone https://github.com/tatsuhiro-t/nghttp2.git
    cd nghttp2
    autoreconf -i
    automake
    autoconf
    ./configure
    ## ./configure --with-nghttp2 --prefix=
    make
    sudo make install

    问题二 : curl 正常了,需要添加path

    wget http://curl.haxx.se/download/curl-7.46.0.tar.bz2
    tar -xvjf curl-7.46.0.tar.bz2
    cd curl-7.46.0
    ./configure --with-nghttp2=/usr/local --with-ssl
    sudo make && make install
    echo '/data1/jhh/envirment/R/R-3.4.3/curl-7.47.1/lib' > /etc/ld.so.conf.d/local.conf
    ldconfig


  • 相关阅读:
    combiner中使用状态模式
    了解Shell
    优秀工具推荐
    linux安装weblogic10.3
    FastDFS上传下载(上)
    java压缩工具类
    06链表
    05数组
    04时间复杂度
    03复杂度
  • 原文地址:https://www.cnblogs.com/jinhh/p/8251030.html
Copyright © 2011-2022 走看看