1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/install-local.R
\name{install_local}
\alias{install_local}
\title{Install a Package from a Local Repository}
\usage{
install_local(pkgs, ..., lib = .libPaths()[1], repos = get_opts("local.repos"))
}
\arguments{
\item{pkgs}{A character vector of package names.}
\item{...}{Optional arguments passed to \code{\link[packrat]{install}}.}
\item{lib}{The library in which the package should be installed.}
\item{repos}{The local repositories to search for the package names specified.}
}
\description{
This function can be used to install a package from a local 'repository'; i.e.,
a directory containing package tarballs and sources.
}
|