installConda {rsyncrosim} | R Documentation |
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 signature 'character'
installConda(session, software = "miniforge")
## S4 method for signature 'missingOrNULL'
installConda(session, software = "miniforge")
## S4 method for signature 'Session'
installConda(session, software = "miniforge")
Arguments
session |
|
software |
character. Whether to install the latest release of "miniforge" (Default) or "miniconda". |
Value
Invisibly returns TRUE
upon success (i.e.successful
install) and FALSE
upon failure.
Examples
## Not run:
# Install miniforge for the default SyncroSim session
installConda()
# Install miniconda for the default SyncroSim session
installConda(software = "miniconda")
## End(Not run)
[Package rsyncrosim version 2.1.2 Index]