Rstudio-server无法安装,但可以安装Rstudio & 安装bioconductor遇到问题:“installation path not writeable, unable to up”

 

# 安装Rstudio

下载Rstudio后将安装包放到home文件夹中,然后点击直接进行安装。在终端里直接输入rstudio运行。

# 安装bioconductor

source("https://bioconductor.org/biocLite.R")
biocLite()

遇到以下问题:

>biocLite()
BioC_mirror: https://bioconductor.org
Using Bioconductor 3.7 (BiocInstaller 1.30.0), R 3.5.3 (2019-03-11).
installation path not writeable, unable to update packages: cluster, MASS, nlme, survival

解决方案:打开终端

sudo R
update.packages()
source("https://bioconductor.org/biocLite.R")
biocLite()

OK!

你可能感兴趣的:(R语言)