Rev 27445 | Blame | Last modification | View Log | Download | RSS feed
\name{INSTALL}\alias{INSTALL}\title{Install Add-on Packages}\description{Utility for installing add-on packages.}\usage{R CMD INSTALL [options] [-l lib] pkgs}\arguments{\item{pkgs}{A list with the path names of the packages to beinstalled.}\item{lib}{the path name of the \R library tree to install to.}\item{options}{a space-separated list of options through which inparticular the process for building the help files can becontrolled. Options should only be given once.Use \code{R CMD INSTALL --help} for the current list of options.}}\details{If used as \code{R CMD INSTALL pkgs} without explicitly specifying\code{lib}, packages are installed into the library tree rooted at thefirst directory given in the environment variable \env{R\_LIBS} ifthis is set and non-null, and to the default library tree (which isrooted at \file{\$R\_HOME/library}) otherwise.To install into the library tree \code{lib}, use\code{R CMD INSTALL -l lib pkgs}.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.Some package sources contain a \file{configure} script that can bepassed arguments or variables via the option \option{--configure-args}and \option{--configure-vars}, respectively, if necessary. The latteris useful in particular if libraries or header files needed for thepackage are in non-system directories. In this case, one can use theconfigure variables \code{LIBS} and \code{CPPFLAGS} to specify theselocations (and set these via \option{--configure-vars}), see section\dQuote{Configuration variables} in \dQuote{R Installation andAdministration} for more information. (If these are used more thanonce on the command line, only the last instance is used.) One canbypass the configure mechanism using the option \option{--no-configure}.If \option{--no-docs} is given, no help files are built. Options\option{--no-text}, \option{--no-html}, and \option{--no-latex} suppresscreating the text, HTML, and LaTeX versions, respectively. Thedefault is to build help files in all three versions.If the option \option{--save} is used, the installation procedurecreates a binary image of the package code, which is then loaded whenthe package is attached, rather than evaluating the package source atthat time. Having a file \file{install.R} in the package directorymakes this the default behavior for the package (option\option{--no-save} overrides). You may need \option{--save} if yourpackage requires other packages to evaluate its own source. If thefile \file{install.R} is non-empty, it should contain R expressions tobe executed when the package is attached, after loading the savedimage. Options to be passed to R when creating the save image can bespecified via \option{--save=ARGS}.If the attempt to install the package fails, leftovers are removed.If the package was already installed, the old version is restored.Use \code{R CMD INSTALL --help} for more usage information.}\section{Packages using the methods package}{Packages that require the methods package, and that use functions suchas \code{\link[methods]{setMethod}} or \code{\link[methods]{setClass}},should be installed by creating a binary image.The presence of a file named\file{install.R} in the package's main directory causes an image tobe saved. Note that the file is not in the \file{R} subdirectory: allthe code in that subdirectory is used to construct the binary image.Normally, the file \file{install.R} will be empty; if it does containR expressionsthese will be evaluated when the package is attached, e.g. by a call tothe function \code{\link{library}}. (Specifically, the source codeevaluated for a package with a saved image consists of a suitabledefinition of \code{.First.lib} to ensure loading of the savedimage, followed by the R code in file \file{install.R}, if any.)}\seealso{\code{\link{REMOVE}} and \code{\link{library}} for information onusing several library trees;\code{\link{update.packages}} for automatic update of packages usingthe internet;the chapter on \dQuote{Creating R packages} in \dQuote{Writing \RExtensions} (see the \file{doc/manual} subdirectory of the \R sourcetree).}\keyword{utilities}