Created
July 3, 2017 05:39
-
-
Save duttashi/1d75901cc3286e7a7b4d82f666bc7295 to your computer and use it in GitHub Desktop.
How to install different versions of SparkR
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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