#rstats nerds: on Ubuntu I can install cran pkgs via terminal with `apt install r-cran-{pkg}`. Is there an equivalent way to install pkgs hosted on GitHub?
6
2
1
6
Whoops. Other way. With bspm, you can say
install.packages(c("digest", "ggplot2"))
etc and it will farm out to `apt` and get you all proper R as well as system depends via the available binaries.
But from R, not from the shell prompt (but I use a shell wrapper in littler)
Aug 23, 2021 路 4:05 PM UTC
1
1


