INSTALL                package:utils                R Documentation

_I_n_s_t_a_l_l _A_d_d-_o_n _P_a_c_k_a_g_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     Utility for installing add-on packages.

_U_s_a_g_e:

     R CMD INSTALL [options] [-l lib] pkgs

_A_r_g_u_m_e_n_t_s:

    pkgs: A space-separated list with the path names of the packages to
          be installed.

     lib: the path name of the R library tree to install to.

 options: a space-separated list of options through which in particular
          the process for building the help files can be controlled. 
          Options should only be given once. Use 'R CMD INSTALL --help'
          for the current list of options. 

_D_e_t_a_i_l_s:

     This will stop at the first error, so if you want all the 'pkgs'
     to be tried, call this via a shell 'for' or 'foreach' loop.

     If used as 'R CMD INSTALL pkgs' without explicitly specifying
     'lib', packages are installed into the library tree rooted at the
     first directory in the library path which would be used by R run
     in the current environment.

     To install into the library tree 'lib', use 'R CMD INSTALL -l lib
     pkgs'.  This prepends 'lib' to 'R_LIBS' for duration of the
     install, so required packages in the installation directory will
     be found (and used in preference to those in other libraries).

     Both 'lib' and the elements of 'pkgs' may be absolute or relative
     path names of directories.  'pkgs' may also contain names of
     package/bundle archive files of the form 'pkg_version.tar.gz' as
     obtained from CRAN: these are then extracted in a temporary
     directory.  Finally, binary package/bundle archive files (as
     created by 'R CMD build --binary' can be supplied.

     Some package sources contain a 'configure' script that can be
     passed arguments or variables via the option '--configure-args'
     and '--configure-vars', respectively, if necessary.  The latter is
     useful in particular if libraries or header files needed for the
     package are in non-system directories.  In this case, one can use
     the configure variables 'LIBS' and 'CPPFLAGS' to specify these
     locations (and set these via '--configure-vars'), see section
     "Configuration variables" in "R Installation and Administration"
     for more information.  (If these are used more than once on the
     command line, only the last instance is used.)  One can bypass the
     configure mechanism using the option '--no-configure'.

     If '--no-docs' is given, no help files are built.  Options
     '--no-text', '--no-html', and '--no-latex' suppress creating the
     text, HTML, and LaTeX versions, respectively.  The default is to
     build help files in all three versions.

     If the attempt to install the package fails, leftovers are
     removed. If the package was already installed, the old version is
     restored. This happens either if a command encounters an error or
     if the install is interrupted from the keyboard: after cleaning up
     the script terminates.

     Use 'R CMD INSTALL --help' for more usage information.

_P_a_c_k_a_g_e_s _u_s_i_n_g _t_h_e _m_e_t_h_o_d_s _p_a_c_k_a_g_e:

     Packages that require the methods package and make use functions
     such as 'setMethod' or 'setClass', should be installed using
     lazy-loading (or, deprecated, by creating a binary image): use the
     field 'LazyLoad' in the 'DESCRIPTION' file to ensure this.

_N_o_t_e:

     Some parts of the operation of 'INSTALL' depend on '/tmp' having
     both write and execution access to the account running R. This is
     usually the case, but if  '/tmp' has been mounted as 'noexec',
     environment variable 'TMPDIR' needs to be set to a directory from
     which execution is allowed.

_S_e_e _A_l_s_o:

     'REMOVE' and 'library' for information on using several library
     trees; 'update.packages' for automatic update of packages using
     the internet (or other R level installation of packages, such as
     by 'install.packages').

     The section on "Add-on packages" in "R Installation and
     Administration" and the chapter on "Creating R packages" in
     "Writing R Extensions" (see 'RShowDoc' and the 'doc/manual'
     subdirectory of the R source tree).

