I am trying to load the GRASS library and am getting the following error: > library(GRASS) Loading required package: akima Error: package 'akima' could not be loaded In addition: Warning message: There is no package called 'akima' in: library(pkg, character.only = TRUE, logical = TRUE, lib.loc = lib.loc) This is on R 2.0.0, library(GRASS) is installed, and update.packages() has been run. Thanks Kirk R. Wythers Dept. of Forest Resources University of Minnesota email: kwythers@umn.edu tel: 612.625.2261 fax: 612.625.5212
akima error
3 messages · Brian Ripley, Kirk R. Wythers
On Thu, 28 Oct 2004, Kirk R. Wythers wrote:
I am trying to load the GRASS library and am getting the following error:
> library(GRASS)
Loading required package: akima Error: package 'akima' could not be loaded In addition: Warning message: There is no package called 'akima' in: library(pkg, character.only = TRUE, logical = TRUE, lib.loc = lib.loc) This is on R 2.0.0, library(GRASS) is installed, and update.packages() has been run.
But has install.packages("akima") been run?
OR install.packages("GRASS", dependencies = TRUE) ?
Brian D. Ripley, ripley@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595
On Oct 28, 2004, at 12:55 PM, Prof Brian Ripley wrote:
Loading required package: akima Error: package 'akima' could not be loaded In addition: Warning message: There is no package called 'akima' in: library(pkg, character.only = TRUE, logical = TRUE, lib.loc = lib.loc) This is on R 2.0.0, library(GRASS) is installed, and update.packages() has been run.
But has install.packages("akima") been run?
OR install.packages("GRASS", dependencies = TRUE) ?
Thank you.
install.packages("GRASS", dependencies=TRUE)
worked splendidly.
Kirk
Kirk R. Wythers
Dept. of Forest Resources
University of Minnesota
email: kwythers@umn.edu
tel: 612.625.2261
fax: 612.625.5212