diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/provision | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/provision b/bin/provision index 21ca98e..3ae4ba4 100755 --- a/bin/provision +++ b/bin/provision @@ -77,5 +77,14 @@ if [ "$BOOKDOWN_PACKAGING" == "CRAN" ]; then else $SUDO apt install -y r-cran-bookdown $SUDO apt install -y r-cran-pdftools + + # As of 2024-08-16, this package is not available on Debian bookworm $SUDO Rscript -e 'install.packages("eulerr")' + + # As of 2024-08-16, ggplot2 from Debian bookworm version is 3.4.1, whereas + # some downstreams need functionality from 3.5.0 (specifically, the ability + # to use 'theme(legend.position = "inside"' constructs. + # + # Therefore we're currently installing a ggplot2 version from CRAN. + $SUDO Rscript -e 'install.packages("ggplot2")' fi |