Using R in terminal in Ubuntu 14.04, I am simply trying to install packages. My command is:
install.packages("plyr", repos='http://watson.nci.nih.gov/cran_mirror/')
I've tried this with just install.packages("plyr")
as well, and selected the appropriate mirror from the pop-up. However, in both instances i get this result:
> install.packages("plyr")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
--- Please select a CRAN mirror for use in this session ---
Killed
root@[removed]/usr/local/lib/R/site-library#
I can't figure out why 'killed' is returned, and R closes.
I've looked around SO and Google but have not yet found an answer. Thanks in advance!