Re: [R] Installing package from website

2013-08-27 Thread Tal Galili
Henrik solution is probably just what you need, but just to mention a similar solution, there is also: if (!require('installr')) install.packages('installr'); require('installr') install.packages.zip("zip_URL") (the source code is here: https://github.com/talgalili/installr/blob/master/R/install.

Re: [R] Installing package from website

2013-08-27 Thread Henrik Bengtsson
On Sun, Aug 25, 2013 at 10:55 AM, Christofer Bogaso wrote: > Hello again, > > I need to install Rmpi package from this > http://www.stats.uwo.ca/faculty/yu/Rmpi/download/windows/MPICH2 > > I was wondering if there is any direct way to install this in R. The > trivial method would obviously be down

Re: [R] Installing package from website

2013-08-25 Thread Prof Brian Ripley
On 25/08/2013 18:55, Christofer Bogaso wrote: Hello again, I need to install Rmpi package from this http://www.stats.uwo.ca/faculty/yu/Rmpi/download/windows/MPICH2 I was wondering if there is any direct way to install this in R. The No, because it is not a proper R repository. In particular,

[R] Installing package from website

2013-08-25 Thread Christofer Bogaso
Hello again, I need to install Rmpi package from this http://www.stats.uwo.ca/faculty/yu/Rmpi/download/windows/MPICH2 I was wondering if there is any direct way to install this in R. The trivial method would obviously be download and save the required zip file in the local disk and install it fro