普通:
install.packages()
以前是:
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")
# 命令行直接安装:
sudo R CMD INSTALL xxx.gz
# R本地安装:
install.packages()
# 更新:
library("rvcheck")
rvcheck::update_all()
update.packages( )