Skip to content
Prev 13044 / 15075 Next

Transitioning from Mac to LInux?

I do same, including Rstudio (Cask).

Once in a while after major updates I need to reinstall all my extra
packages, so I have written me a little script along the lines of

	#!/usr/local/bin/Rscript
	local({
		r <- getOption("repos")
		r["CRAN"] <- "https://cloud.r-project.org/"
		options(repos = r)
	})
	install.packages(c(
		"RMariaDB", "rstudioapi"
	))

made it 0755 and can run it from the command line. Put it in my
handbook so I don't forget and never looked back.


greetings, el
On 02/04/2020 10:03 am, Rainer M Krug wrote: