Learn R Programming

rsyncrosim (version 2.1.9)

installConda: Installs Miniforge or Miniconda

Description

This function installs the Miniforge or Miniconda package manager software to the default installation path within the SyncroSim installation folder. If you already have conda installed in the non-default location, you can point SyncroSim towards that installation using the condaFilepath function.

Usage

installConda(session, software = "miniforge")

# S4 method for character installConda(session, software = "miniforge")

# S4 method for missingOrNULL installConda(session, software = "miniforge")

# S4 method for Session installConda(session, software = "miniforge")

Value

Invisibly returns TRUE upon success (i.e.successful install) and FALSE upon failure.

Arguments

session

Session-class object. If NULL (default), session() will be used

software

character. Whether to install the latest release of "miniforge" (Default) or "miniconda".

Examples

Run this code
if (FALSE) {
# Install miniforge for the default SyncroSim session
installConda()

# Install miniconda for the default SyncroSim session
installConda(software = "miniconda")
}

Run the code above in your browser using DataLab