Replying to @chr1swallace
Is your R configured to compile all packages from source? I switched laptops about two months ago and my experience was really painless.
1
1
My R is default configuration pretty much. Must be something odd though if painless for you.
1
This depends on operating system - CRAN only has packages for Windows and Mac but not Linux. But you can work this around by using conda-forge with mamba solver which is super fast and platform agnostic and has rhumba interface: github.com/mamba-org/rhumba
2
1
Came here to say this. Use binaries whenever possible. This should be no problem on Mac/Win. I just updated R on Ubuntu and used the available binaries via `apt` — much faster
2
1
But the apt packages often out of date, especially on my hpc, and when cran wants you to test in latest devel version and your package stupidly depends on ggplot2 which has a gazillion dependencies itself. I'll explore rhumba tho
2
2
Ah yes, on the HPC this won’t work necessarily. The apt repo is fine and will deliver up-to-date binaries but you have a bottleneck in your HPC maintainers.
1
2
Worth noting that you probably mean CRAN apt. The default only gets security updates outside of Ubuntu 6mo release cycle. The CRAN one (cran.r-project.org/bin/linux…) does a good job but I don't like how they force minor version updates (pushing 4.1 on channel which was 4.0).
3
Yes, I just noticed the new post from @eddelbuettel on using apt on Ubuntu
Using #RStats on @Ubuntu LTS 20.04 or 22.04? The new #CRANapt repo has 19000 .deb binaries for each with full dependencies and `apt` integration. Demo of a full `brms` installation in 13 seconds (using @Docker via @gitpod in the browser). More at eddelbuettel.github.io/r2u/
1
2
just tried this - lightning fast on my laptop where I have sudo privileges
1
4
Seriously look into `bspm` which needs `sudo` once for a two-liner setup. Afterwards #rstat dispatches using it (and `systemd`) which is *pure magic and bliss*. Really nice work by @Enchufa2. I use it on all my r2u installations (a growing list 😜) cloud.r-project.org/package=…

May 18, 2022 · 12:59 PM UTC

1
3
yup, using that :) but not allowed to use a sudo one-liner on our HPC unfortunately
2