0
votes
install.packages("AnnotationDbi", dependencies=TRUE, type="win.binary")

Getting the same error when I try to load in library:

Error: package or namespace load failed for ‘AnnotationDbi’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): object 'vI' not found

I tried multiple things, I am getting the same error every time.

1

1 Answers

0
votes

AnnotationDbi probably needs to be installed with the Bioconductor library rather than from CRAN:

install.packages("BiocManager")
BiocManager::install("AnnotationDbi")

See details in the documentation, hope this helps.