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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/listCorePackages.R
\name{listPackages}
\alias{listPackages}
\alias{listCorePackages}
\alias{listPythonVersion}
\title{List packages}
\usage{
listPackages(env = NULL)
listCorePackages()
listPythonVersion(env = NULL)
}
\arguments{
\item{env}{A \linkS4class{BasiliskEnvironment} object specifying the \pkg{basilisk} environment to use.
Alternatively, a string specifying the path to an environment, though this should only be used for testing purposes.
Alternatively, \code{NULL} to indicate that the base Conda installation should be used as the environment.}
}
\value{
For \code{listPackages}, a data.frame containing the \code{full}, a versioned package string, and \code{package}, the package name.
For \code{listPythonVersion}, a string containing the default version of Python.
}
\description{
List the set of Python packages (and their version numbers) that are installed in an conda environment.
}
\details{
This is provided for informational purposes only;
developers should not expect the same core packages to be present across operating systems.
\code{?\link{installConda}} has some more comments on the version of the conda installer used for each operating system.
}
\examples{
listPackages()
listPythonVersion()
}
\author{
Aaron Lun
}
|