在AWS EC2实例上安装RStudio

时间:2018-03-29 06:35:10

标签: r amazon-web-services amazon-ec2 rstudio putty

我设法在 Amazon Web Services 上创建 EC2 实例 Amazon Linux AMI 2017.09.1 (随机选择)( AWS )。 我可以从本地桌面发送和接收文件到 AWS

现在我想在 AWS 上安装 R RStudio Server )。 在搜索答案时,我发现下面的脚本要写入 Putty

# install R base
$ sudo yum install r-base

#install RStudio-Server 1.1.442
$ sudo yum install gdebi-core
$ wget https://download2.rstudio.org/rstudio-server-1.1.442-amd64.deb
$ sudo gdebi rstudio-server-1.1.442-amd64.deb

#add user(s)
useradd username
echo username:password | passwordtest

但我每次得到的答案是:"没有包r-base"或者"没有包gdebi-core可用"。

这些是我缺少的先决条件吗? 谢谢。 中号

1 个答案:

答案 0 :(得分:2)

Amazon Linux AMI 2017.09.1基于Centos 6,你得到的步骤是Ubuntu(gdebi是一个Ubuntu安装程序),以下是official documentation.

的步骤
$ sudo yum install R
$ wget https://download2.rstudio.org/rstudio-server-rhel-1.1.442-x86_64.rpm
$ sudo yum install rstudio-server-rhel-1.1.442-x86_64.rpm