linux下安装R
下载
版本:R3.2.2
下载地址:http://cran.rstudio.com/src/base/R-3/R-3.2.2.tar.gz
安装步骤:
解压 tar -zxvf R-3.2.2.tar.gz
./configure --prefix=/usr/local/R3.2.2
ERROR:
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for fc... no
configure: error: No F77 compiler found
solution:
[root@localhost Packages]# rpm -ivh gcc-gfortran-4.4.7-4.el6.x86_64.rpm libgfortran-4.4.7-4.el6.x86_64.rpm
warning: gcc-gfortran-4.4.7-4.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing... ########################################### [100%]
1:libgfortran ########################################### [ 50%]
2:gcc-gfortran ########################################### [100%]
ERROR:
checking for main in -lncurses... no
checking for main in -ltermcap... no
checking for main in -ltermlib... no
checking for rl_callback_read_char in -lreadline... no
checking for history_truncate_file... no
configure: error: --with-readline=yes (default) and headers/libs are not available
SOLUTION:
[root@localhost Packages]# rpm -ivh readline-devel-6.0-4.el6.x86_64.rpm ncurses-devel-5.7-3.20090208.el6.x86_64.rpm
warning: readline-devel-6.0-4.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing... ########################################### [100%]
1:ncurses-devel ########################################### [ 50%]
2:readline-devel ########################################### [100%]
ERROR:
checking whether iswctype exists and is declared... yes
checking for wctrans_t... yes
checking for mbstate_t... yes
checking for ICU... no
checking for X... no
configure: error: --with-x=yes (default) and X11 headers/libs are not available
SOLUTION:
[root@localhost Packages]# rpm -ivh libXt-devel-1.1.3-1.el6.x86_64.rpm xorg-x11-proto-devel-7.6-25.el6.noarch.rpm libX11-devel-1.5.0-4.el6.x86_64.rpm libxcb-devel-1.8.1-1.el6.x86_64
.rpm libXau-devel-1.0.6-4.el6.x86_64.rpm libSM-devel-1.2.1-2.el6.x86_64.rpm libICE-devel-1.0.6-1.el6.x86_64.rpm
warning: libXt-devel-1.1.3-1.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing... ########################################### [100%]
1:xorg-x11-proto-devel ########################################### [ 14%]
2:libICE-devel ########################################### [ 29%]
3:libSM-devel ########################################### [ 43%]
4:libXau-devel ########################################### [ 57%]
5:libxcb-devel ########################################### [ 71%]
6:libX11-devel ########################################### [ 86%]
7:libXt-devel ########################################### [100%] #在安装libXt-devel时,报以下依赖
pkgconfig(ice) is needed by libXt-devel-1.1.3-1.el6.x86_64 ==》libICE-devel
pkgconfig(sm) is needed by libXt-devel-1.1.3-1.el6.x86_64 ==》libSM-devel
pkgconfig(x11) is needed by libXt-devel-1.1.3-1.el6.x86_64 ==》libX11-devel、libxcb-devel、libXau-devel
pkgconfig(xproto) is needed by libXt-devel-1.1.3-1.el6.x86_64 ==》xorg-x11-proto-devel
ERROR:
error: C++ preprocessor “/lib/cpp” fails sanity
SOLUTION:
安装glibc-headers和gcc-c++的rpm包
make && make install
make[3]: Entering directory `/root/Desktop/R-3.2.2/src/modules/lapack'
make[3]: Leaving directory `/root/Desktop/R-3.2.2/src/modules/lapack'
make[3]: Entering directory `/root/Desktop/R-3.2.2/src/modules/X11'
make[3]: Leaving directory `/root/Desktop/R-3.2.2/src/modules/X11'
make[2]: Leaving directory `/root/Desktop/R-3.2.2/src/modules'
make[2]: Entering directory `/root/Desktop/R-3.2.2/src/library'
mkdir -p -- /usr/local/R3.2.2/lib64/R/library
installing packages ...
building HTML index ...
make[2]: Leaving directory `/root/Desktop/R-3.2.2/src/library'
make[1]: Leaving directory `/root/Desktop/R-3.2.2/src'
make[1]: Entering directory `/root/Desktop/R-3.2.2/tests'
make[1]: Nothing to be done for `install'.
make[1]: Leaving directory `/root/Desktop/R-3.2.2/tests'
vim /etc/profile
export R_HOME=/usr/local/R3.2.2
export PATH=.:$PATH:$R_HOME/bin:$R_HOME
安装rstudio
[root@localhost ~]# wget http://download2.rstudio.org/rstudio-server-0.98.1091-x86_64.rpm
--2018-04-10 03:31:57-- http://download2.rstudio.org/rstudio-server-0.98.1091-x86_64.rpm
Resolving download2.rstudio.org... 54.192.212.48, 54.192.212.112, 54.192.212.214, ...
Connecting to download2.rstudio.org|54.192.212.48|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 55476487 (53M) [application/x-redhat-package-manager]
Saving to: “rstudio-server-0.98.1091-x86_64.rpm” 100%[=====================================================================================================================================================>] 55,476,487 28.8K
/s in 23m 20s 2018-04-10 03:55:18 (38.7 KB/s) - “rstudio-server-0.98.1091-x86_64.rpm” saved [55476487/55476487] [root@localhost ~]# ll
total 68040
-rw-------. 1 root root 3310 Mar 10 2017 anaconda-ks.cfg
-rw-r--r-- 1 root root 696 Jul 21 2017 derby.log
drwxr-xr-x. 5 root root 4096 Apr 10 03:20 Desktop
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Documents
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Downloads
-rw-r--r-- 1 root root 14973 Jul 21 2017 hs_err_pid6312.log
-rw-r--r--. 1 root root 41955 Mar 10 2017 install.log
-rw-r--r--. 1 root root 9154 Mar 10 2017 install.log.syslog
drwxr-xr-x 5 root root 4096 Mar 21 2017 metastore_db
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Music
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Pictures
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Public
drwxr-xr-x 22 root root 4096 Dec 14 01:00 python
-rw-r--r-- 1 root root 14026384 Dec 13 22:58 Python-2.7.tgz
-rw-r--r--. 1 root root 65 Mar 11 2017 redhat-6.5_me_missing-rpms.lst
-rw-r--r-- 1 root root 55476487 Nov 6 2014 rstudio-server-0.98.1091-x86_64.rpm
drwxr-xr-x 2 root root 4096 Jul 12 2017 spark-warehouse
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Templates
-rw-r--r-- 1 root root 849 Feb 6 23:11 testHive.py
drwxr-xr-x. 2 root root 4096 Mar 10 2017 Videos
-rw-r--r-- 1 root root 18280 Aug 14 2017 zookeeper.out
[root@localhost ~]# rpm -ivh rstudio-server-0.98.1091-x86_64.rpm
Preparing... ########################################### [100%]
1:rstudio-server ########################################### [100%]
groupadd: group 'rstudio-server' already exists
rsession: no process killed
rstudio-server start/running
ERROR:
[root@localhost ~]# rstudio-server start
/usr/lib/rstudio-server/bin/rserver: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory
/usr/sbin/rstudio-server: line 24: return: can only return from a function or sourced script
initctl: Job is already running: rstudio-server
[root@localhost ~]# rstudio-server verify-installation
rstudio-server stop/waiting
/usr/lib/rstudio-server/bin/rserver: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory
rstudio-server start/running
SOLUTION:
[root@localhost ~]# cd /usr/lib64
[root@localhost lib64]# ll *ssl*
lrwxrwxrwx. 1 root root 27 Mar 11 2017 libnss_compat_ossl.so.0 -> libnss_compat_ossl.so.0.0.0
-rwxr-xr-x. 1 root root 81832 Mar 16 2010 libnss_compat_ossl.so.0.0.0
-rwxr-xr-x. 1 root root 249368 Oct 15 2013 libssl3.so
lrwxrwxrwx. 1 root root 16 Mar 10 2017 libssl.so.10 -> libssl.so.1.0.1e
-rwxr-xr-x. 1 root root 439912 Sep 27 2013 libssl.so.1.0.1e openssl:
total 4
drwxr-xr-x. 2 root root 4096 Mar 10 2017 engines
[root@localhost lib64]# ln -s libssl.so.1.0.1e libssl.so.6
[root@localhost lib64]# ll *ssl*
lrwxrwxrwx. 1 root root 27 Mar 11 2017 libnss_compat_ossl.so.0 -> libnss_compat_ossl.so.0.0.0
-rwxr-xr-x. 1 root root 81832 Mar 16 2010 libnss_compat_ossl.so.0.0.0
-rwxr-xr-x. 1 root root 249368 Oct 15 2013 libssl3.so
lrwxrwxrwx. 1 root root 16 Mar 10 2017 libssl.so.10 -> libssl.so.1.0.1e
-rwxr-xr-x. 1 root root 439912 Sep 27 2013 libssl.so.1.0.1e
lrwxrwxrwx 1 root root 16 Apr 10 18:26 libssl.so.6 -> libssl.so.1.0.1e
[root@localhost lib64]# ll *libcrypto*
lrwxrwxrwx 1 root root 19 Apr 10 18:30 libcrypto.so -> libcrypto.so.1.0.1e
lrwxrwxrwx. 1 root root 19 Mar 10 2017 libcrypto.so.10 -> libcrypto.so.1.0.1e
-rwxr-xr-x. 1 root root 1949440 Sep 27 2013 libcrypto.so.1.0.1e
[root@localhost lib64]# ln -s libcrypto.so.1.0.1e libcrypto.so.6
[root@localhost lib64]# ll *libcrypto*
lrwxrwxrwx 1 root root 19 Apr 10 18:30 libcrypto.so -> libcrypto.so.1.0.1e
lrwxrwxrwx. 1 root root 19 Mar 10 2017 libcrypto.so.10 -> libcrypto.so.1.0.1e
-rwxr-xr-x. 1 root root 1949440 Sep 27 2013 libcrypto.so.1.0.1e
lrwxrwxrwx 1 root root 19 Apr 10 18:34 libcrypto.so.6 -> libcrypto.so.1.0.1e
ERROR:
[root@localhost lib64]# rstudio-server start
initctl: Job is already running: rstudio-server
[root@localhost lib64]# rstudio-server verify-installation
rstudio-server stop/waiting
11 Apr 2018 01:35:45 [rserver] ERROR Unable to find libR.so in expected locations within R Home directory /usr/local/R3.2.2/lib64/R; LOGGED FROM: bool core::r_util::<unnamed
>::detectRLocationsUsingR(const std::string&, core::FilePath*, core::FilePath*, core::config_utils::Variables*, std::string*) /root/rstudio/src/cpp/core/r_util/REnvironmentPosix
.cpp:544
11 Apr 2018 01:35:45 [rserver] ERROR R shared library (/usr/local/R3.2.2/lib64/R/lib/libR.so) not found. If this is a custom build of R, was it built with the --enable-R-shlib option
?; LOGGED FROM: bool core::r_util::<unnamed>::validateREnvironment(const core::r_util::EnvironmentVars&, const core::FilePath&, std::string*) /root/rstudio/src/cpp/core/r_util
/REnvironmentPosix.cpp:368
R shared library (/usr/local/R3.2.2/lib64/R/lib/libR.so) not found. If this is a custom build of R, was it built with the --enable-R-shlib option?
rstudio-server start/running, process 42212
SOLUTION:
[root@localhost Packages]# rpm -ivh openssl-1.0.1e-15.el6.x86_64.rpm
warning: openssl-1.0.1e-15.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing... ########################################### [100%]
package openssl-1.0.1e-15.el6.x86_64 is already installed
[root@localhost Packages]# rpm -ivh openssl-devel-1.0.1e-15.el6.x86_64.rpm krb5-devel-1.10.3-10.el6_4.6.x86_64.rpm keyutils-libs-devel-1.4-4.el6.x86_64.rpm libcom_err-devel-1.41.12-18
.el6.x86_64.rpm libselinux-devel-2.0.94-5.3.el6_4.1.x86_64.rpm libsepol-devel-2.0.41-4.el6.x86_64.rpm
warning: openssl-devel-1.0.1e-15.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing... ########################################### [100%]
1:libsepol-devel ########################################### [ 17%]
2:libselinux-devel ########################################### [ 33%]
3:libcom_err-devel ########################################### [ 50%]
4:keyutils-libs-devel ########################################### [ 67%]
5:krb5-devel ########################################### [ 83%]
6:openssl-devel ########################################### [100%]
ERROR:
ERROR Unable to find libR.so in expected locations within R Home directory
SOLUTION: 重新编译R
./configure --enable-R-shlib --prefix=/usr/local/R3.2.2
ERROR:
[root@localhost R-3.2.2]# rstudio-server verify-installation
11 Apr 2018 01:50:41 [rsession-rstudio-server] ERROR r error 4 (R code execution error) [errormsg=Error in tools:::httpdPort > 0L :
comparison (6) is possible only for atomic and list types
]; OCCURRED AT: core::Error r::exec::<unnamed>::evaluateExpressionsUnsafe(SEXPREC*, SEXPREC*, SEXPREC**, r::sexp::Protect*) /root/rstudio/src/cpp/r/RExec.cpp:148; LOGGED FROM: core
::Error session::modules::help::initialize() /root/rstudio/src/cpp/session/modules/SessionHelp.cpp:892
rstudio-server start/running, process 80692
linux下安装R的更多相关文章
- 在Linux下安装R语言软件
安装环境: centos.R3.0.1 1.在终端下下载: #cd /usr/local/ #wget http://mirror.bjtu.edu.cn/cran/src/base/R-3/R-3. ...
- linux下安装R第三方包forecast
ERROR: [root@localhost soft]# R CMD INSTALL curl_3.1.tar.gz WARNING: ignoring environment value of R ...
- Linux下安装Tomcat服务器和部署Web应用
一.上传Tomcat服务器
- Linux下安装使用Solr
Linux下安装使用Solr 1.首先下载Solr.mmseg4j分词包.tomcat并解压,这用google.百度都可以搜索得到下载地址. 2.因为要使用到中文分词,所以要设置编码,进入tomcat ...
- Linux下安装和配置JDK与Tomcat(升级版)
在这个版本 Linux下安装和配置JDK与Tomcat(入门版) 的基础上优化升级 1.下载相关软件 apache-tomcat-6.0.37.tar.gz jdk-6u25-linux-i586-r ...
- CentOS linux下安装和配置Apache+SVN(用浏览器http方式访问SVN目录)
在CentOS linux下安装SVN,我们可以进行以下步骤: 第一步:安装CentOS Linux操作系统,并在CentOS安装进行的同时,自定义安装这一步,一定要勾选Subversion(在“开发 ...
- linux下安装7z命令及7z命令的使用
本文主要介绍了在linux下安装7z命令的方法,同时介绍了7z命令的使用.7z压缩格式拥有众多优点,具有极高的压缩比率,如果你还不了解,请看文章:7z格式.LZMA压缩算法和7-Zip详细介绍. re ...
- (转)Linux下安装rar fou linux
在Linux下安装rar fou linux rar for linux 软件下载地址:http://www.rarsoft.com/download.htm 到目前为止最新的版本为4.10 beta ...
- Linux下安装loadrunner步骤及遇到的问题
Linux下实现压力测试,只能在Linux下安装加压器---load-generator,然后通过本地录制脚本,通过loadrunner controller 的Scenario-->Load ...
随机推荐
- IntelliJ IDEA 复杂的重构技巧
IntelliJ IDEA 复杂的重构技巧(二) 转载 上次我说了一些 "复杂的重构技巧" ,讲的是一些使用 IntelliJ 的简单功能实现复杂的重构需求的技巧. 看到大家的反响 ...
- http的导图
- Nginx启动错误 Failed to read PID from file /run/nginx.pid 的处理方法
问题产生原因 因为 nginx 启动需要一点点时间,而 systemd 在 nginx 完成启动前就去读取 pid file 造成读取 pid 失败 解决方法 让 systemd 在执行 ExecSt ...
- 11 Mysql之配置双主热备+keeepalived.md
准备 1. 双主 master1 192.168.199.49 master2 192.168.199.50 VIP 192.168.199.52 //虚拟IP 2.环境 master:nginx + ...
- 关于获取jquery对象的长度
/* 17:10 2019/8/6 @author zhangxingshuo jQuery:"write less, do more" homepage: https://jqu ...
- poj 1953 World Cup Noise (dp)
World Cup Noise Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 16774 Accepted: 8243 ...
- iperf和iperf3详解
一.iperf server端: iperf -s -p 25001 -B 192.168.33.103 (-u) -s 指定server端 -p 指定端口(要和客户端一致) -B 绑定ip地址 - ...
- svn 权限设置
/***********************************************************/ //SVNSubversion 用户权限管理 //资料来源:网络.总结 // ...
- Python with open 使用技巧
在使用Python处理文件的是,对于文件的处理,都会经过三个步骤:打开文件->操作文件->关闭文件.但在有些时候,我们会忘记把文件关闭,这就无法释放文件的打开句柄.这可能觉得有些麻烦,每次 ...
- plsql之导入数据乱码
问题现象: 首先是使用了plsql 8.0版本客户端导入 ANSI as UTF-8 的字符集 格式sql 文件进行数据的导入, 然后检查了所有的系统环境的字符集和plsql 的字符集 都OK 的但 ...