You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> BiocManager::install('phangorn', dependencies = TRUE)
Bioconductor version 3.17 (BiocManager 1.30.20), R Under development (unstable)
(2023-02-21 r83887)
Old packages: 'MASS', 'mgcv', 'survival'
Update all/some/none? [a/s/n]: n
Warning message:
package(s) not installed when version(s) same as or greater than current; use
`force = TRUE` to re-install: 'phangorn'
>
so the dependencies are not installed...
install.packages() says
> install.packages('phangorn', dependencies = TRUE, repos = "https://cran.r-project.org")
Installing package into ‘/private/var/folders/yn/gmsh_22s2c55v816r6d51fx1tnyl61/T/RtmpsjHQs2’
(as ‘lib’ is unspecified)
Warning: dependencies ‘Biostrings’, ‘seqLogo’ are not available
also installing the dependencies ‘htmlwidgets’, ‘bslib’, ...
It also re-installs 'phangorn', which is not desirable.
I guess a workaround is to follow the BiocManager advice, and install missing dependencies and re-install phangorn.
BiocManager::install('phangorn', dependencies = TRUE, force = TRUE)
> packageVersion('BiocManager')
[1] ‘1.30.20’
The text was updated successfully, but these errors were encountered:
Reported via email
So far so good, but
so the dependencies are not installed...
install.packages()
saysIt also re-installs 'phangorn', which is not desirable.
I guess a workaround is to follow the BiocManager advice, and install missing dependencies and re-install phangorn.
The text was updated successfully, but these errors were encountered: