Entering edit mode
> if (!require("BiocManager", quietly = TRUE))
+ install.packages("BiocManager")
Bioconductor version 3.14 (BiocManager 1.30.16), R 4.1.2 (2021-11-01)
> BiocManager::install(version = "3.14")
'getOption("repos")' replaces Bioconductor standard repositories, see
'?repositories' for details
replacement repositories:
CRAN: https://mirrors.tongji.edu.cn/CRAN
Bioconductor version 3.14 (BiocManager 1.30.16), R 4.1.2 (2021-11-01)
Installation paths not writeable, unable to update packages
path: C:/Program Files/R/R-4.1.2/library
packages:
Matrix
Installation paths not writeable, unable to update packages
means you do not have permissions to update that package in its default location. perhaps R was installed by an admin? You can create your own installation directory in a path you do have permissions by using thelib
argument or setting anR_LIBS
environment variable. The installation paths that R will try to use will be listed in order of the list produced by.libPaths()
in R.