Creates the conda environment for the specified SyncroSim package(s).
Usage
createCondaEnv(pkgs, session = NULL)
# S4 method for class 'ANY,character'
createCondaEnv(pkgs, session = NULL)
# S4 method for class 'ANY,missingOrNULL'
createCondaEnv(pkgs, session = NULL)
# S4 method for class 'ANY,Session'
createCondaEnv(pkgs, session = NULL)
Value
Invisibly returns TRUE
upon success (i.e.successful creation of the
conda environment(s)) or FALSE
upon failure.
Examples
if (FALSE) { # \dontrun{
# Set up a SyncroSim Session
mySession <- session()
# Create the conda environment for helloworldConda package
condaFilepath(pkgs = "helloworldConda", mySession)
} # }