Lauren,

On 15 October 2024 at 13:51, Gerber, Lauren J wrote:
| I just tried fixing my script and added library(BiocManager) before library
| (ggbreak), then rebuilt the image, and am still getting the same error.

You need _two_ distinct commands. First

    install.packages("BiocManager")

and second once that is done use it to install 'ggbreak' from BioConductor

    BiocManager::install("ggreak")

The two wrappers I showed in my earlier email do this for you, from the
command-line, which I find pleasant for both shell and docker use.
Preferences of course vary but the key here is that a) ggbreak is a
BioConductor package and b) you must use BiocManager::install() to install
those.

Dirk

-- 
dirk.eddelbuettel.com | @eddelbuettel | e...@debian.org

_______________________________________________
R-SIG-Debian mailing list
R-SIG-Debian@r-project.org
https://stat.ethz.ch/mailman/listinfo/r-sig-debian

Reply via email to