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 ...
随机推荐
- C++练习 | 单链表的创建与输出(结构体格式)
#include <iostream> #include <stdio.h> using namespace std; #define OK 1 #define ERROR 0 ...
- file_put_contents实现内容追加
file_put_contents("test.txt", "This is another something.", FILE_APPEND); FILE_A ...
- 版本控制器之SVN(一)
通常软件开发由多人协作开发,如果对代码文件.配置文件.文档等没有进行版本控制,将会出现很多问题: 备份多个版本,占用磁盘空间大 解决代码冲突困难 容易引发BUG 难于追溯问题代码的修改人和修改时间 难 ...
- Hive 教程(四)-分区表与分桶表
在 hive 中分区表是很常用的,分桶表可能没那么常用,本文主讲分区表. 概念 分区表 在 hive 中,表是可以分区的,hive 表的每个区其实是对应 hdfs 上的一个文件夹: 可以通过多层文件夹 ...
- python多进程,并获取每个进程的返回值
pool = multiprocessing.Pool(processes=10) row = [...] for row in rows: task_id = row[1] img_id = row ...
- [Next] 六.next的优化
导出 html 并开启服务 我们将 pages 下页面导出为静态 HTML 页面.首先,next.config.js 在应用程序的根目录中创建一个名为的文件,并添加以下内容 exportPathMap ...
- Intellij idea启动项目提示"ClassNotFoundException"
引用至Intellij IDEA 启动项目ClassNotFoundException 使用Intellij IDEA的过程中,新创建的项目启动时报 严重: Error configuring app ...
- Yii2 增删查改
查: User::find()->all(); //返回所有用户数据:User::findOne($id); //返回 主键 id=1 的一条数据: User::find()-> ...
- TensorFlow入门——bazel编译(带GPU)
这一系列基本上是属于我自己进行到了那个步骤就做到那个步骤的 由于新装了GPU (GTX750ti)和CUDA9.0.CUDNN7.1版本的软件,所以希望TensorFlow能在GPU上运行,也算上补上 ...
- Hadoop网页监控配置
接之前的内容http://www.cnblogs.com/jourluohua/p/8734406.html 在之前那的内容中,仅实现了Hadoop的安装和运行,距离实际使用还有很远.现在先完成一个小 ...