Entering edit mode
h72ghorashi
•
0
@h72ghorashi-14959
Last seen 7.8 years ago
Hi,
I'm new to bioconductor and I'm trying to install the package "AnnotationDbi" using the code below:
source("http://bioconductor.org/biocLite.R")biocLite("AnnotationDbi")library("AnnotationDbi")
but this gives the error below:
Error: package or namespace load failed for ‘AnnotationDbi’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘digest’
Can anyone please help me to find out what the problem is?

Based on this error:
there is no package called ‘digest’, it likely means you have to install the packagedigestfirst.source("https://bioconductor.org/biocLite.R") biocLite("digest")Thank you, it really worked :)