我是靠谱客的博主 风趣冰棍,最近开发中收集的这篇文章主要介绍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


转载于:https://www.cnblogs.com/jinhh/p/8251030.html

最后

以上就是风趣冰棍为你收集整理的R 语言安装问题集锦的全部内容,希望文章能够帮你解决R 语言安装问题集锦所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部