I'm trying to install phyloseq
package on my computer. I'm using R version 4.0.2 on a 64-bit Windows 10 machine.
I've ran the following lines on Rstudio.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("phyloseq")
This is what's showing on the console right now:
Bioconductor version 3.11 (BiocManager 1.30.10), R 4.0.2 (2020-06-22)
Installing package(s) 'phyloseq'
also installing the dependencies 'pixmap', 'rhdf5', 'permute', 'ade4', 'biomformat', 'Biostrings', 'igraph', 'multtest', 'reshape2', 'vegan'
There is a binary version available but the source version is later:
binary source needs_compilation
ade4 1.7-15 1.7-16 TRUE
And my Rstudio has been stuck on that screen for several hours now. I've restarted the R session and the computer, then tried to install the ade4
package separately by update.packages()
and install.packages("ade4")
, but it gets stuck with the same lines. Did anyone else have similar problems when installing phyloseq
or really any other Bioconductor
packages?
I tried installing the package in a console as suggested and it worked. I'm not sure why that prompt wasn't visible either because I haven't had issues with installing other packages in Rstudio (which was also why I thought it might be a Bioconductor issue, but sounds like it isn't). Thank you for your suggestions!