Entering edit mode
I am trying to load library (DESeq2) and I get the following message
library(DESeq2)
Loading required package: GenomicRanges
Error: package or namespace load failed for ‘GenomicRanges’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called ‘XVector’
Error: package ‘GenomicRanges’ could not be loaded
sessionInfo( )
So, XVector didn't get install with this command also. Code:
You mis-spelled XVector in the above.
BiocManager::install("XVextor")
should beBiocManager::install("XVector")
Ok, Thanks. I tried again but I still get error:
I was able to install
XVector
on a windows 10 VM with Bioc 3.14. The errors suggest that you're having problems downloading. Could you first try visitinghttps://bioconductor.org/packages/3.14/bioc/bin/windows/contrib/4.1/zlibbioc_1.40.0.zip
in a browser? If that works, inR
try to download it withdownload.file
. If you're not able to download the file viadownload.file
, try setting a proxy. SeeSetting Proxies
in?download.file
.