• 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


  • 相关阅读:
    mongodb教程
    redis高级知识
    memcached删除机制与大数据缓存问题
    nginx 运维基础
    mysql 集群与分区
    Memcached之缓存雪崩,缓存穿透,缓存预热,缓存算法
    git cz配置
    Angular零碎知识点-持续补充
    Vue学习笔记-组件
    Vue学习笔记-自定义指令生命周期函数
  • 原文地址:https://www.cnblogs.com/jinhh/p/8251030.html
Copyright © 2020-2023  润新知