I am trying to install Bioconductor into R, using the code on their website. When I type in the code (see bellow) I get an error message saying that some packages can\'t be
It was a permission issue for me. First, I identified where the packages were installed using installed.packages()[, c("Package", "LibPath")]
. This outputs a long 2 column matrix with the names and locations of the packages. Then you will see where the offending packages are. In my case, they were at /usr/lib/R/site-library
and /usr/lib/R/library
. Then I changed the permission of these folders by chmod
(I used chmod -R 777
on the main R folder, this is my personal computer, so security is not a big concern here I think).