hodgesse1 / rfortran

Automatically exported from code.google.com/p/rfortran
0 stars 0 forks source link

Problems during installation of RFortran due to cran server being down #67

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
*** What steps will reproduce the problem?

1. Runninng install_rcom.r

*** What is the expected output?

rcom and rscproxy downloaded and installer from CRAN

*** What do you see instead?

Warning: unable to access index for repository
http://cran.r-project.org/bin/windows/contrib/2.10

*** What version of RFortran are you using?

v2.0.1

*** Please provide any additional information below.

Problems occurs because the CRAN server was down. Need to modify 
install_rcom.r so that if CRAN server is down it can be run from Rgui.exe 
as follows:

IF (R=Rgui.exe) then
 install.packages(pkgs, dep=T,repos="http://cran.r-project.org") # Install
packages - use this line if installing via Rterm.exe specific repos as
cannot choose repos using Rterm 

else If (R==Rterm.exe) then

install.packages(pkgs, dep=T) # Install packages - Use this line if
installing from Rgui.exe 

end if

Original issue reported on code.google.com by mark.th...@gmail.com on 27 Apr 2010 at 6:44

GoogleCodeExporter commented 8 years ago
To find out if Rgui can use

isRgui function in package svMisc 

Original comment by mark.th...@gmail.com on 27 Apr 2010 at 7:03

GoogleCodeExporter commented 8 years ago
.Platform command returns info on whether R is run in Rterm or Rgui mode

Original comment by mark.th...@gmail.com on 27 Apr 2010 at 7:09

GoogleCodeExporter commented 8 years ago
Change installer so that Rterm output is redirected to a file that can be read 
by
installer.

Original comment by mark.th...@gmail.com on 27 Apr 2010 at 7:46

GoogleCodeExporter commented 8 years ago

Original comment by mark.th...@gmail.com on 2 Dec 2010 at 1:50

GoogleCodeExporter commented 8 years ago

Original comment by mark.th...@gmail.com on 14 Feb 2011 at 11:06