Gets or sets the path to the Conda installation folder. Can be used to direct SyncroSim to a custom Conda installation.
Usage
condaFilepath(session)
# S4 method for class 'Session'
condaFilepath(session)
# S4 method for class 'missingOrNULLOrChar'
condaFilepath(session)
condaFilepath(session) <- value
# S4 method for class 'character'
condaFilepath(session) <- value
# S4 method for class 'Session'
condaFilepath(session) <- value
Examples
if (FALSE) { # \dontrun{
# Set up a SyncroSim Session
mySession <- session()
# Retrieve Conda installation path for the SyncroSim Session
condaFilepath(mySession)
# Set the Conda installation path for the SyncroSim Session
condaFilepath(mySession) <- "C:/miniconda3"
} # }