In order to access CRAN packages from within R on OSX I've been using

Sys.setenv(http_proxy="http://blah_blah:1234/")

as the first command in the R GUI for a while, but would really like to set this proxy automatically.

I've tried unsuccessfully to get the same command to work in a .Rprofile file in ~/

I've also tried http_proxy="http://blah_blah:1234/", but this fails too.

The error I get when I try to view packages is a drop-down window that says:

Fetching Package List Failed
Please consult R Console output for details

The GUI then gives:

Error in read.dcf(file = tmpf) : Line starting '<head> ...' is malformed!

The .Rprofile file itself seems to be loading (checked using cat("my profile works\n"))

link|improve this question
Would someone create an rprofile tag? There are now a few questions that are directly related to the rprofile – csgillespie Apr 12 '11 at 9:11
After you start R, what happens when you type: Sys.getenv("http_proxy") – csgillespie Apr 12 '11 at 9:13
If it is to set the repository for downloading packages, you can just use options("repos"="http://cran.stat.ucla.edu/") in the profile file. – Joris Meys Apr 12 '11 at 9:25
@csgillespie Sys.getenv("http_proxy") returns http_proxy "" – R_usr Apr 13 '11 at 13:15
feedback

2 Answers

up vote 1 down vote accepted

Couldn't you just use .First ?

http://cran.r-project.org/doc/manuals/R-intro.html#Customizing-the-environment

link|improve this answer
I tried first, within .Rprofile, but couldn't get it to work - is this wrong? – R_usr Apr 12 '11 at 19:29
feedback

I think I have managed to solve this using trial and error...

A combination of .First and Sys.setenv() works.

If anyone has any ideas I'd be interested to know why.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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