Re: [R] Install local package

2009-06-11 Thread Uwe Ligges
Ronggui Huang wrote: ## Check the package R CMD check path.of.package ## Build the package R CMD build pathof.package ## INSTALL the package R CMD INSTALL path.of.package It is recommended to build the tar.gz first and then isntall and check from the tarball rather than from the source

[R] install local package

2009-06-10 Thread Jorge Cornejo
Hi, I'm working on a package that I would someday put in CRAN. Now I want to test it on my computer. I already check and compile the files but I don't know how to install the package located on my hard drive. I'm running R under linux. Can anyone tell my how to do it? Thanks in advance. _

Re: [R] Install local package

2009-06-10 Thread Ronggui Huang
## Check the package > R CMD check path.of.package ## Build the package > R CMD build pathof.package ## INSTALL the package > R CMD INSTALL path.of.package You can use _R --help _ (from within terminal) to get more information. Ronggui 2009/6/11 Jorge Cornejo : > Hi, I'm working on a package th

[R] Install local package

2009-06-10 Thread Jorge Cornejo
Hi, I'm working on a package that I would someday put in CRAN. Now I want to test it on my computer. I already check and compile the files but I don't know how to install the package located on my hard drive. I'm running R under linux. Can anyone tell my how to do it? Thanks in advance. _