Install/Update R or Python packages to RAVE environment
install_packages.Rd
Install/Update R or Python packages to RAVE environment
Examples
if (FALSE) { # \dontrun{
# ---- R --------------------------------------------------------
# Install R packages (CRAN, BioC, or RAVE's repository)
add_r_package("ravebuiltins")
add_r_package("rhdf5")
# Install from Github (github.com/dipterix/threeBrain)
add_r_package("dipterix/threeBrain")
# Install Github branch
add_r_package("dipterix/threeBrain@custom-electrode-geom")
# ---- Python ----------------------------------------------------
# Normal pypi packages
add_py_package("threebrainpy")
# Add through conda
add_py_package("fftw", method = "conda")
} # }