Skip to content

Instantly share code, notes, and snippets.

@duttashi
Created July 3, 2017 05:39
Show Gist options
  • Save duttashi/1d75901cc3286e7a7b4d82f666bc7295 to your computer and use it in GitHub Desktop.
Save duttashi/1d75901cc3286e7a7b4d82f666bc7295 to your computer and use it in GitHub Desktop.
How to install different versions of SparkR
install.packages("devtools")
devtools::install_github("rstudio/sparklyr")
library(sparklyr)
# check spark installed versions
spark_installed_versions()
# install spark versions
spark_install(version = "1.6.2")
spark_install(version = "2.0.0")
spark_install(vresion = "2.1.0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment