多人在线协作R开发RStudio Server(1)
- UID
- 1066743
|
多人在线协作R开发RStudio Server(1)
前言
RStudio是R语言开发中的利器,是一个IDE集成环境。RStudio Server版本提供了web的功能,可以安装远程计算机,通过web进行访问,支持多用户。如此神器,快来动手试一下吧。
目录
- 系统环境
- RStudio Server安装
- RStudio Server使用
- RStudio Server多人协作
1. 系统环境操作系统: Linux Ubuntu 64bit 12.04.2 LTS
R语言: 3.0.1
~ uname -aLinux conan-deskop 3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:13:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux~ cat /etc/issueUbuntu 12.04.2 LTS \n \lRStudio Server官方介绍:http://www.rstudio.com/ide/download/server
安装R语言
~ sudo apt-get install r-base#R版本 3.0.1~ R --versionR version 3.0.1 (2013-05-16) -- "Good Sport"Copyright (C) 2013 The R Foundation for Statistical ComputingPlatform: x86_64-pc-linux-gnu (64-bit)R is free software and comes with ABSOLUTELY NO WARRANTY.You are welcome to redistribute it under the terms of theGNU General Public License versions 2 or 3.For more information about these matters see 2. RStudio Server安装下载并安装
~ sudo apt-get install gdebi-core~ sudo apt-get install libapparmor1 # Required only for Ubuntu, not Debian~ wget sudo gdebi rstudio-server-0.97.551-amd64.deb查看rstudio-server
~ ps -aux|grep rstudio-server998 2914 0.0 0.1 192884 2568 ? Ssl 10:40 0:00 /usr/lib/rstudio-server/bin/rserverrstudio-server的服务已启动, 8787端口被打开。 |
|
|
|
|
|