How can I set a specific CRAN mirror permanently in R? I want to set it permanently in my laptop so that when I do install.packages, it won't ask me again which mirror to choose.

link|improve this question

See stackoverflow.com/questions/1189759/… for .Rprofile examples. – jthetzel Dec 12 '11 at 13:44
you may want to edit global Rprofile file. On *NIX platforms, it's located in /usr/lib/R/library/base/R/Rprofile. Just be careful... and note that local .Rprofile settings take precedence. – aL3xa Dec 12 '11 at 14:21
Following up on @aL3xa's comment, see ?Startup for the really gory details of where `.Rprofile files can be located and which take precedence. – Josh O'Brien Dec 12 '11 at 14:42
And please notice the .First and .Last objects. – aL3xa Dec 12 '11 at 14:54
Edited the title and made it r-faq. This is a great question and a will be a useful reference for the future. With this title, it will be easier to locate for others looking for this information. – Joris Meys Dec 12 '11 at 15:05
feedback

1 Answer

up vote 7 down vote accepted

You can set repos in your .Rprofile to restore your choice every time you start R

Edit: to be more precise:

Add

options(repos=structure(c(CRAN="YOUR FAVORITE MIRROR")))

to your .Rprofile


Alternatively, you check your Rprofile.site (in the directory /your-R-installation/etc/ , eg R-2.14.0/etc). There you see following lines commented out :

# set a CRAN mirror
# local({r <- getOption("repos")
#       r["CRAN"] <- "http://my.local.cran"
#       options(repos=r)})

So remove the comment marks and change "http://my.local.cran" to the correct website.

link|improve this answer
I added extra information, as it wasn't worth an extra answer and a bit too much for a comment. – Joris Meys Dec 12 '11 at 15:04
I don't think that call to structure is doing anything. Usually it's just a convenient way to add attributes to an object. – Richie Cotton Dec 12 '11 at 15:24
@rinni: thanks, I googled for the list of URLs found the one I am closest to as you described in the .Rprofile file. – yahoo291523 Dec 12 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

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