💾 Archived View for republic.circumlunar.space › users › johngodlee › posts › 2019-03-15-rpack.gmi captured on 2023-09-08 at 16:21:34. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-04)

-=-=-=-=-=-=-

Exporting a list of R packages to install on a new machine

DATE: 2019-03-15

AUTHOR: John L. Godlee

In preparation for fieldwork I wanted to replicate my R environment as best I could on a laptop I had borrowed from the University. Part of this involved installing packages.

To get a list of packages on my own laptop I ran:

packs <- installed.packages()

packs_names <- packs[,1]

Then I saved that as a .csv and emailed myself the file on the new computer:

write.csv(packs_names, "names.csv")

On the new computer, I opened R, then opened the csv and installed the packages.

packs <- read.csv("names.csv")

install.packages(packs[,1])