diff --git a/DESCRIPTION b/DESCRIPTION index 3475da63..68132543 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -61,5 +61,8 @@ RoxygenNote: 7.2.3 Suggests: CommutingZones, rmarkdown +Remotes: + ebenmichael/augsynth, + facebookincubator/CommutingZones VignetteBuilder: knitr Roxygen: list(markdown = TRUE) diff --git a/README.md b/README.md index b0154801..2774b072 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,10 @@ GeoLift requires or works with: - R version 4.0.0 or newer. ## Installing GeoLift -To install the package, first make sure that `remotes` and -`augsynth` are installed. +To install the package, first make sure that `remotes` is installed. ``` install.packages("remotes", repos='http://cran.us.r-project.org') -remotes::install_github("ebenmichael/augsynth") ``` Then, install the package from GitHub: diff --git a/vignettes/GeoLift_Walkthrough.Rmd b/vignettes/GeoLift_Walkthrough.Rmd index 9a623c7d..95ffe296 100644 --- a/vignettes/GeoLift_Walkthrough.Rmd +++ b/vignettes/GeoLift_Walkthrough.Rmd @@ -44,8 +44,7 @@ You can install `GeoLift` from our [GitHub repository](https://github.com/facebo ```{r install, results="hide", message=F, eval=F} ## Install remotes if noy already installed install.packages("remotes", repos = "http://cran.us.r-project.org") -## Install augsynth & GeoLift from GitHub -remotes::install_github("ebenmichael/augsynth") +## Install GeoLift from GitHub remotes::install_github("facebookincubator/GeoLift") ``` diff --git a/website/docs/GettingStarted/InstallingR.md b/website/docs/GettingStarted/InstallingR.md index 950ccef9..922b765a 100644 --- a/website/docs/GettingStarted/InstallingR.md +++ b/website/docs/GettingStarted/InstallingR.md @@ -22,13 +22,7 @@ Since GeoLift is currently only available on GitHub, the `remotes` package is a install.packages("remotes", repos='http://cran.us.r-project.org') ``` -To install the package, first make sure that remotes and `augsynth` are installed. - -``` -remotes::install_github("ebenmichael/augsynth") -``` - -Finally, we can install the `GeoLift` package with the following command: +Then we can install the `GeoLift` package with the following command: ``` remotes::install_github("facebookincubator/GeoLift")