Re: [R] Package seems to be present but library don't find it

2012-04-04 Thread Duncan Murdoch
On 12-04-03 12:25 PM, Marc Girondot wrote: Indeed I get this error message when I install the library using R CMD INSTALL but not within the GUI (in MacOsX). Good to know that R CMD INSTALL is more verbose and permits to track bug. I followed up in R-sig-mac, and it turns out the reason you did

Re: [R] Package seems to be present but library don't find it

2012-04-03 Thread Marc Girondot
Indeed I get this error message when I install the library using R CMD INSTALL but not within the GUI (in MacOsX). Good to know that R CMD INSTALL is more verbose and permits to track bug. Thanks a lot. It works fine now. Marc Le 03/04/12 16:03, Duncan Murdoch a écrit : > On 03/04/2012 9:50 A

Re: [R] Package seems to be present but library don't find it

2012-04-03 Thread Duncan Murdoch
On 03/04/2012 9:50 AM, Marc Girondot wrote: In case someone has the competence to check, the file is here: setwd("~") download.file("http://www.ese.u-psud.fr/epc/conservation/r-scripts/HelloWorld_1.0.tar.gz";, "HelloWorld_1.0.tar.gz") install.packages("HelloWorld_1.0.tar.gz", repos = NULL)

Re: [R] Package seems to be present but library don't find it

2012-04-03 Thread Marc Girondot
In case someone has the competence to check, the file is here: setwd("~") download.file("http://www.ese.u-psud.fr/epc/conservation/r-scripts/HelloWorld_1.0.tar.gz";, "HelloWorld_1.0.tar.gz") install.packages("HelloWorld_1.0.tar.gz", repos = NULL) Thanks a lot Marc Le 03/04/12 10:55, Marc

[R] Package seems to be present but library don't find it

2012-04-03 Thread Marc Girondot
Hi, I try to make my first package? The HelloWorld.R file is: HelloWorld.R #' showHello est une fonction R permettant d'afficher le message #' "Hello World!" sur la console. #' @title la fonction showHello() showHello <-function(){ cat("Hello World!\n") } I use the following procedure