1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/inst.R
\name{inst}
\alias{inst}
\title{Get the installation path of a package}
\usage{
inst(name)
}
\arguments{
\item{name}{the name of a package.}
}
\description{
Given the name of a package, this returns a path to the installed
copy of the package, which can be passed to other devtools functions.
}
\details{
It searches for the package in \code{\link[=.libPaths]{.libPaths()}}. If multiple
dirs are found, it will return the first one.
}
\examples{
inst("pkgload")
inst("grid")
}
|