-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsysreqs_list_system_packages.Rd
44 lines (44 loc) · 1.49 KB
/
sysreqs_list_system_packages.Rd
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/sysreqsdocs.R
\name{sysreqs_list_system_packages}
\alias{sysreqs_list_system_packages}
\title{List installed system packages}
\usage{
sysreqs_list_system_packages()
}
\value{
Data frame with columns:
\itemize{
\item \code{status}. two or three characters, the notation of \code{dpkg} on Debian
based systems. \code{"ii"} means the package is correctly installed.
On \code{RPM} based systems it is always \code{"ii"} currently.
\item \code{package}: name of the system package.
\item \code{version}: installed version of the system package.
\item \code{capabilities}: list column of character vectors, the capabilities
provided by the package.
}
}
\description{
List installed system packages
}
\details{
This function uses the \code{sysreqs_platform} configuration option,
see \eval{man_config_link("Configuration")}. Set this if
pak does not detect your platform correctly.
}
\examples{
\dontshow{if (Sys.getenv("IN_PKGDOWN") == "true" && Sys.info()[["sysname"]] == "Linux") (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf}
sysreqs_list_system_packages()[1:10,]
\dontshow{\}) # examplesIf}
}
\seealso{
Other system requirements functions:
\code{\link{pkg_sysreqs}()},
\code{\link{sysreqs_check_installed}()},
\code{\link{sysreqs_db_list}()},
\code{\link{sysreqs_db_match}()},
\code{\link{sysreqs_db_update}()},
\code{\link{sysreqs_is_supported}()},
\code{\link{sysreqs_platforms}()}
}
\concept{system requirements functions}