Rev 15499 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{INSTALL}\title{Install Add-on Packages from Sources}\alias{INSTALL}\usage{Rcmd INSTALL [options] [-l lib] pkgs}\arguments{\item{pkgs}{A list with the path names of the sources of thepackages to be installed.}\item{lib}{the path name of the \R library tree to install to.}\item{options}{a list of options through which in particular the buildprocess for help files can be controlled. Use \code{Rcmd INSTALL--help} for the current list of options.}}\description{To install packages into the default library tree (which is rooted at\file{\$R\_HOME/library}), do \code{Rcmd INSTALL pkgs}.To install into the library tree \code{lib} instead of the defaultone, use \code{Rcmd INSTALL -l lib pkgs}.}\details{Both \code{lib} and the elements of \code{pkgs} may be absolute orrelative path names. \code{pkgs} can also contain name of packagearchive files of the form \file{pkg\_version.tar.gz} as obtained fromCRAN (these are then extracted in a temporary directory\file{R.INSTALL} of the current directory).If the option \code{--save} is used, the installation procedurecreates a binary image of the package code, which is then loaded whenthe library is attached, rather than evaluating the package source atthat time. Having a file \code{install.R} in the package directory(its contents don't matter) makes this the default behavior for thepackage (option \code{--no-save} overrides). You may need \code{--save}if your package requires other packages to evaluate its own source.For checking (via the examples in the help files \file{man/*.Rd},use \code{Rcmd check [-l lib] <pkg>}: use \code{Rcmd check --help}for more information.}\seealso{\code{\link{REMOVE}}, and \code{\link{library}} for information onusing several library trees and creating packages;\code{\link{update.packages}} for automatic update of packages usingthe internet.}\keyword{utilities}