README.md

googleComputeEngineR

CRAN Build Status codecov.io

googleComputeEngineR provides an R interface to the Google Cloud Compute Engine API, for launching virtual machines. It looks to make the deployment of cloud resources for R as painless as possible, and includes some special templates to launch R-specific resources such as RStudio, Shiny, and OpenCPU with a few lines from your local R session.

See all documentation on the googleComputeEngineR website

TL;DR - Creating an RStudio server VM

  1. Configure a Google Cloud Project with billing.
  2. Download a service account key JSON file.
  3. Put your default project, zone and JSON file location in your .Renviron.
  4. Run library(googleComputeEngineR) and auto-authenticate.
  5. Run vm <- gce_vm(template = "rstudio", name = "rstudio-server", username = "mark", password = "mark1234") (or other credentials) to start up an RStudio Server.
  6. Wait for it to install, login via the returned URL.

A video guide to setup and launching an RStudio server has been kindly created by Donal Phipps and is available at this link.

Thanks to

Install

CRAN version:

install.packages("googleComputeEngineR")

Development version:

if (!require("ghit")) {
    install.packages("ghit")
}
ghit::install_github("cloudyr/googleComputeEngineR")

cloudyr project logo



cloudyr/googleComputeEngineR documentation built on Jan. 23, 2022, 8:30 a.m.