1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/pkg_check.R
\name{recipes_pkg_check}
\alias{recipes_pkg_check}
\title{Update packages}
\usage{
recipes_pkg_check(pkg = NULL, ...)
}
\arguments{
\item{pkg}{A character string for the package being checked}
\item{...}{Extra arguments to pass to \code{\link[utils:install.packages]{utils::install.packages()}}}
}
\value{
Nothing is returned but a message is printed to the
console about which packages (if any) should be installed along
with code to do so.
}
\description{
This will check to see if all required packages are installed.
}
\examples{
\dontrun{
recipes_pkg_check("recipes")
}
}
\keyword{internal}
|