Skip to content

Commit

Permalink
clarify dplyr downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
hongooi73 committed Sep 28, 2017
1 parent cb9e001 commit b27e9c3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ dplyrXdf requires Microsoft R Server release 8.0 or later, and dplyr 0.7 or late
If you are using MRS 9.1 or earlier, the necessary packages will not be in the MRAN snapshot that is your default repo. You can install them from CRAN instead:

```r
install.packages(c("dplyr", "dbplyr", "sparklyr", "odbc"), repos="https://cloud.r-project.org")
install.packages("dplyr", repos="https://cloud.r-project.org")
# optional
install.packages(c("dbplyr", "odbc"), repos="https://cloud.r-project.org")
install.packages(c("dbplyr", "sparklyr"), repos="https://cloud.r-project.org")
```

Make sure you install dplyr 0.7 _before_ you install dplyrXdf.
Expand All @@ -32,4 +35,3 @@ Make sure you install dplyr 0.7 _before_ you install dplyrXdf.
The previous version of dplyrXdf, 0.9.2, is also available. You can install this with `install_github("RevolutionAnalytics/[email protected]")`. This version requires dplyr 0.5 or earlier; it may run into problems with dplyr 0.7.



0 comments on commit b27e9c3

Please sign in to comment.