I am using ESS, but every time I need to install a new package I have to use R gui. Isn't there a way to do this without leaving emacs?

link|improve this question

75% accept rate
1  
Why can't you use install.packages? – Joshua Ulrich Jul 8 '11 at 20:43
R process hangs when it prompts to select mirror. – user443854 Jul 8 '11 at 20:50
2  
So set a mirror in your ~/.R/ files. Or as a argument to install.packages. Seems like a PBKAC. – Dirk Eddelbuettel Jul 8 '11 at 20:53
3  
or chooseCRANmirror(FALSE) – Ben Bolker Jul 8 '11 at 21:53
2  
No need to be rude about the work of others via comments ad hominen. – Gavin Simpson Jul 9 '11 at 9:29
show 3 more comments
feedback

2 Answers

up vote 6 down vote accepted

From help(Startup):

 ## Example of Rprofile.site
 local({
   # add MASS to the default packages, set a CRAN mirror
   old <- getOption("defaultPackages"); r <- getOption("repos")
   r["CRAN"] <- "http://my.local.cran"
   options(defaultPackages = c(old, "MASS"), repos = r)
   ## (for Unix terminal users) set the width from COLUMNS if set
   cols <- Sys.getenv("COLUMNS")
   if(nzchar(cols)) options(width = as.integer(cols))
 })
link|improve this answer
feedback

http://www.emacswiki.org/emacs/anything-R.el works well for me.

link|improve this answer
Thanks for the pointer about 'anything', the Emacs Wiki entry is interesting. Yet another mode to try... – Dirk Eddelbuettel Jul 11 '11 at 12:53
Thanks, I use anything, but did not know about anything-R. So once installed, which command should I use? I tried a few obvious choices such as "install package", but did not see anything promising. – user443854 Jul 11 '11 at 14:33
1  
@user443854 You need to define a function and then call it like:` (defun orp-R-anything () (interactive) (anything-other-buffer '( anything-c-source-R-local anything-c-source-R-help ;; anything-c-source-R-localpkg ;; anything-c-source-R-repospkg ) " R-anything")) ' – Otto Pichlhoefer Aug 13 '11 at 18:37
Hmm, that can't be the "real" answer (@Otto), as the anything-R.el file explicitly contains functionality for install.packages() – Martin Mächler Aug 19 '11 at 7:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.