I have tried to install the RODBC package with the next command: > install.packages(("ORDBC"), (lib="usr/lib/R/library")) But it is failed. Can I get some information about the installation of this package anywhere? Best regards, Nader -------------------------------------------------------------- Zie ook/see also: http://www.knmi.nl/maildisclaimer.html
On Mon, Feb 17, 2003 at 09:57:36AM +0100, Nader Emami wrote:> I have tried to install the RODBC package with the next command: > > > install.packages(("ORDBC"), (lib="usr/lib/R/library"))"RODBC", I presume? If that's a cut-and-paste, there's one error...> But it is failed. Can I get some information about the installation of > this package anywhere?What was the error message? Jason -- Indigo Industrial Controls Ltd. 64-21-343-545 jasont at indigoindustrial.co.nz
Nader,> have tried to install the RODBC package with the next command: > > > install.packages(("ORDBC"), (lib="usr/lib/R/library")) > > But it is failed. Can I get some information about the installation of > this package anywhere? > > Best regards, > > Nader >An alternate way to install is with R CMD INSTALL from the shell prompt. I have done this in Linux without a problem. This should work on your OS as well. See documentation for INSTALL (in "base"), or at, http://rweb.stat.umn.edu/R/library/base/html/INSTALL.html ********************************************************* Prediction is very difficult, especially about the future. -- Niels Bohr ********************************************************* [[alternate HTML version deleted]]
Nader Emami wrote:> I have tried to install the RODBC package with the next command: > > > install.packages(("ORDBC"), (lib="usr/lib/R/library"))The correct spelling, RODBC, might help. BTW: install.packages("RODBC") should be sufficient and all your inner parantheses are superfluously at all. Uwe Ligges> But it is failed. Can I get some information about the installation of > this package anywhere?> > Best regards, > > Nader
Uwe Ligges wrote:> Nader Emami wrote: > >> I have tried to install the RODBC package with the next command: >> >> > install.packages(("ORDBC"), (lib="usr/lib/R/library")) > > > The correct spelling, RODBC, might help.Arrgh, I overlooked another point: Of course, lib="usr/lib/R/library" should be lib="/usr/lib/R/library", since you surely want it to be treated as an absolute pathname... Uwe Ligges> BTW: install.packages("RODBC") should be sufficient and all your inner > parantheses are superfluously at all. > > Uwe Ligges > > >> But it is failed. Can I get some information about the installation of >> this package anywhere? > > > > > Best regards, > > > > Nader >