Learn R Programming

rsyncrosim (version 2.0.1)

condaFilepath: Path to Conda installation folder

Description

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 Session condaFilepath(session)

# S4 method for missingOrNULLOrChar condaFilepath(session)

condaFilepath(session) <- value

# S4 method for character condaFilepath(session) <- value

# S4 method for Session condaFilepath(session) <- value

Value

A character: the currently set filepath of the Conda installation folder.

Arguments

session

Session object or character (i.e. filepath to a session). If NULL, session() will be used

value

character. If empty, then returns the current Conda installation path

Examples

Run this code
if (FALSE) {
# 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"
}

Run the code above in your browser using DataLab