R安装R包

普通:

install.packages()

R安装R包_第1张图片

以前是:

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

options(BioC_mirror="http://mirrors.ustc.edu.cn/bioc/") #中科大

options(repos=structure(c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")))  #清华

biocLite(pkg_name)

现在:

先安装BiocManager:

chooseCRANmirror()

install.packages("BiocManager")

使用:

BiocManager::install("pkg")

R安装R包_第2张图片

# 命令行直接安装:

sudo R CMD INSTALL xxx.gz

# R本地安装:

install.packages()

# 更新:

library("rvcheck")

rvcheck::update_all()

update.packages( )

R安装R包_第3张图片
图片发自App

你可能感兴趣的:(R安装R包)